This project is a Python-based register and login system, created using the guide provided by Coddy.tech. It allows users to securely register an account and log in using stored credentials. The system demonstrates basic account handling concepts like user authentication and data persistence.
- User Registration: Allows new users to create accounts with secure credential storage.
- User Login: Authenticates users using their registered credentials.
- Data Storage: Stores user information locally for demonstration purposes.
- main.py: Contains the Python code for user registration and login functionality.
To run the project:
- Download or clone the repository.
- Navigate to the directory containing
main.py
. - Run the script using the following command:
python main.py
If you'd like to modify the system:
- Update the storage mechanism in
main.py
to use a database (e.g., SQLite, MySQL) instead of local files for better scalability. - Enhance the user authentication process by integrating password encryption using libraries like
bcrypt
orhashlib
.
This project was built using the guide provided by Coddy.tech. The original project can be found here.