This is a simple login system using a Flask framework. In order to use this, you must do the following after cloning this repository:
- Install Python (go here: https://www.python.org/downloads/). I used Python 3.8.3 when making this.
- Install pip. This comes automatically with versions of Python after 3.4.
- Install flask (run
pip install flaskin your command prompt/terminal in any directory). - Install passlib (run
pip install passlibin your command prompt/terminal in any directory). - Change the secret key (see the comments above where the secret key is set in app.py).
- Run your flask server! Type
flask runin your command prompt/terminal and make sure that you are in the same directory as this flask app.
Enjoy, and thanks for visiting!