client-portal-builder/ ├── login.php ← Public login page ├── register.php ← Public registration page (for customers only) ├── logout.php ← Ends the session ├── dashboard.php ← Customer (user) dashboard (protected) ├── admin/ ← Super admin pages │ ├── dashboard.php ← Super admin dashboard (protected) ├── config/ │ └── db.php ← DB connection ├── includes/ │ ├── user_protect.php ← Use in user-only pages │ ├── admin_protect.php ← Use in admin-only pages I used this to insert myself in the DB: UPDATE users SET id= '1', name= 'Abbey', password= 'international1234', role = 'admin' WHERE email = 'you@example.com';