Password Hash Generator
Password: admin123
Hash: $2y$12$yFNsNJy1IPXeTUfPn/D2aOGhhv5f1EwLeT6bbYcvNqkHw9V2hldR2
To update the admin password in database:
- Go to phpMyAdmin: http://localhost/phpmyadmin
- Select database: smile360_kaizan
- Click on table: users
- Click 'Edit' for the admin user
- Replace the password field with this hash
- Click 'Go' to save
Or run this SQL query:
UPDATE users SET password = '$2y$12$yFNsNJy1IPXeTUfPn/D2aOGhhv5f1EwLeT6bbYcvNqkHw9V2hldR2' WHERE username = 'admin';
Test Password Verification
Database Connection Error: SQLSTATE[28000] [1045] Access denied for user 'root'@'localhost' (using password: NO)
Make sure:
- MySQL is running in XAMPP
- Database 'smile360_kaizan' exists
- You've imported the database.sql file
← Back to Login | Go to Form