araujofrancisco / Flask-User-Authentication

User authentication is important for protecting sensitive information and resources from unauthorized access. In this tutorial, you will learn how to set up basic user authentication – that is password-based authentication – in your Flask application.

Home Page:https://ashutoshkrris.hashnode.dev/how-to-set-up-basic-user-authentication-in-a-flask-app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flask Basic User Authentication

User authentication is important for protecting sensitive information and resources from unauthorized access. In this tutorial, you will learn how to set up basic user authentication – that is password-based authentication – in your Flask application.

Blog Tutorial: https://ashutoshkrris.hashnode.dev/how-to-set-up-basic-user-authentication-in-a-flask-app

Project Demo: https://youtu.be/XxSESg89xEI

Instructions to run from code

git clone https://github.com/ashutoshkrris/Flask-User-Authentication

cd Flask-User-Authentication
python3 -m venv env
. env/bin/activate
pip install -r requirements.txt
source .env

flask db init
flask db migrate
flask db upgrade

python manage.py run

Changes from original project

Does includes a configuration setting to disable new users registration.

About

User authentication is important for protecting sensitive information and resources from unauthorized access. In this tutorial, you will learn how to set up basic user authentication – that is password-based authentication – in your Flask application.

https://ashutoshkrris.hashnode.dev/how-to-set-up-basic-user-authentication-in-a-flask-app


Languages

Language:Python 66.8%Language:HTML 32.7%Language:CSS 0.5%