A simple, "grandma-proof" login system written in PHP.
Once registered and logged, you can add and delete other users, or modify their information.
Password are encrypted with salty systems.
- MySQL
- PHP
- MySQL PDO extension
You can find the database dump in cont/php-login-db.sql
Edit database.php before starting the server.
Example:
private $host = "localhost";
private $database = "db_name";
private $username = "mysql_user";
private $password = "mysql_password";