Credentials Panel

How Accounts Work

All accounts are defined in js/app.js inside the USER_ACCOUNTS array. No backend or database required.

Demo Account
Email: demo@shirwalcircle.in Password: Shirwal@123 Name: Rohan Patil Phone: +91 98765 12345 Address: Datta Nagar, Shirwal
Add a New User

Add a new object to USER_ACCOUNTS in js/app.js:

{ username: 'newuser@example.com', password: 'User@123', name: 'Full Name', phone: '+91 90000 00000', address: 'Area, Shirwal' }

Save and redeploy. The user can log in immediately.

⚠️ Security Note

Passwords are stored in plain text in a static JS file. Keep this page private and do not use sensitive passwords. Suitable for small, trust-based community sites only.