# Control Flow Dashboard — MVP v0.1 (Manual Foundation) Short-term goal → **ship a stable manual dashboard** that lets you manage customers by hand (approve/deny/suspend), with multi-user login + roles and full audit logs. This becomes the base for semi-automation and AI agents later. ⚡ Phase 1 — Folder & Base Setup 1️⃣ Folder Tree /controlflow-lite │ ├── customer/ # customer-facing pages (empty for now) │ ├── login.php │ ├── loading.php │ ├── verify.php │ └── success.php │ ├── admin/ # control panel (empty for now) │ └── control.php │ ├── storage/ # JSON + logs │ ├── users.json # empty JSON array [] │ ├── control.json # empty JSON {} │ └── logs.json # empty JSON array [] │ ├── config.php # global settings (empty placeholders) └── bootstrap.php # helper functions placeholder 2️⃣ What to do first Create folder controlflow-lite. Inside, create customer/, admin/, storage/. Create empty files: customer/login.php, customer/loading.php, customer/verify.php, customer/success.php admin/control.php storage/users.json → put [] storage/control.json → put {} storage/logs.json → put [] config.php → just empty PHP file with for now bootstrap.php → empty