This repository contains the example website I've developed to accompany my article on creating a secure Flask login system.
Interested in trying it out for yourself? Follow these steps to get the system up and running on your local machine:
-
Clone the Repository
$ git clone https://github.com/jpjacobpadilla/Flask-Login-System $ cd Flask-Login-System
-
Create and Activate a Virtual Environment
$ python -m venv venv $ source venv/bin/activate
-
Install Required Dependencies
$ pip install -r requirements.txt
-
Navigate to the Source Directory
$ cd src
-
Launch the Application
$ python app.py
After completing these steps, the Flask application should be running locally on your machine. Feel free to explore the code and the functionalities of the Flask login system.