PHP Info with Password Protection
- User management through JSON File
- Password Hashed for each user
- Secure Login Page
- Username: admin
- Password: admin
{
"users": [
...
{
"id": 2,
"username": "admin",
"password": password_hash("admin")
}
]
}
MIT
