This Python script implements a simple login system. It prompts the user for their username and, if the username exists, asks for their password. If the password is correct, it grants access. The program allows the user three attempts to enter their password. It is also case-insensitive for the username.
- Run the Python script
login.py
. - Enter your username when prompted.
- If the username exists, enter your password.
- If the password is correct, "Access Granted" will be displayed.
- You have three attempts to enter your password correctly.
This program is designed for educational purposes and may not provide robust security. It serves as a basic demonstration of a login system implemented in Python.
Feel free to explore, modify, and contribute to this project! If you encounter any issues or have suggestions for improvements, please don't hesitate to raise them in the repository's issue tracker. Happy coding!