Graphical-Password-Authentication-System

  • Signup & Login Authentication Using Flask
  • Password Hashing - SHA256

✍️ Requirements

  • flask
  • flask-sqlalchemy
  • flask-login
  • werkzeug

✔️Windows

  • pip install -r requirements.txt to install dependencies
  • python3 -m venv <env name> to create virtual environment
  • <env name>\scripts\activate
  • SET FLASK_APP=<folder name> create folder with these files
  • SET FLASK_DEBUG=1
  • flask run

✔️Linux

  • pip install -r requirements.txt to install dependencies
  • python3 -m venv <env name> to create virtual environment
  • source <env name>\scripts\activate
  • export FLASK_APP=<folder name> create folder with these files
  • export FLASK_DEBUG=1
  • flask run