This project is a simple Sign-Up and Login System created using Python and Tkinter. It demonstrates the use of a graphical user interface (GUI) to manage user credentials and basic file handling to store and retrieve data. The application features a Sign-Up
page where users can create accounts and a Login
page to validate those accounts.
- Users can enter their name, username, and password to create an account.
- A Generate Password button allows users to generate a random 12-character password.
- User credentials (username and password) are stored securely in a text file (
info.txt
).
- Users can enter their username and password to log in.
- The system validates credentials against the stored data in
info.txt
. - Provides feedback in the console about login success or failure.
- Python 3.x
- Tkinter (built-in module in Python)
- A text editor or IDE to run the script.
- Clone or download this repository to your local system.
- Run the script using Python:
python <project>.py