A simple Flask application demonstrating password hashing and authentication.
- User registration with hashed passwords
- User login with hashed password verification
- Simple session management
- SQLite database for user storage
-
Install dependencies:
pip install -r requirements.txt
-
Run the app:
python app.py
-
Open your browser at
http://127.0.0.1:5000
Passwords are never stored in plain text. We use Werkzeug for secure password hashing.