By Anthony Herbert
Allowing users to log in to your app is one of the most common features you will add to your web applications. You can add authentication to your Flask app with the Flask-Login package.
In this tutorial, you will:
User
modelYou will build a sign-up and a login page that allow users to log in and access protected pages. You will use information from the User
model and display it on the protected pages when the user logs in to simulate what a profile would look like.
Note: This tutorial is limited in scope and does not cover advanced persisting of sessions. Furthermore, modifying the data type for the primary key or considerations for migrating to different database systems are also outside of the scope of this introductory tutorial.
The source code for this project is available on GitHub.
To complete this tutorial, you will need the following:
Here is a diagram to provide a sense of what the file structure of the project will look like once you have completed the tutorial:
.
└── flask_auth_app
└── project
├── __init__.py # setup the app
├── auth.py # the auth routes for the app
├── db.sqlite # the database
├── main.py # the non-auth routes for the app
├── models.py # the user model
└── templates
├── base.html # contains common layout and links
├── index.html # show the home page
├── login.html # show the login form
├── profile.html # show the profile page
└── signup.html # show the signup form
As you progress through the tutorial, you will create these directories and files.
This tutorial was verified with sqlite3
v3.36.0, python
v3.9.8, flask
v2.0.2, flask-login
v0.5.0, and flask-sqlachemy
v2.5.1.
There are three main packages you need for your project:
You will be using SQLite to avoid having to install any extra dependencies for the database.
First, start with creating the project directory:
- mkdir flask_auth_app
Next, navigate to the project directory:
- cd flask_auth_app
You will want to create a Python environment if you don’t have one.
Note: You can consult the tutorial relevant to your local environment for setting up venv
.
Depending on how Python was installed on your machine, your command will look similar to:
- python3 -m venv auth
The -m
flag is for module-name
. This command will execute the module venv
to create a new virtual environment named auth
. This will create a new directory containing bin
, include
, and lib
subdirectories. And a pyvenv.cfg
file.
Next, run the following command:
- source auth/bin/activate
This command will activate the virtual environment.
Run the following command from your virtual environment to install the needed packages:
- pip install flask flask-sqlalchemy flask-login
Now that you have installed the packages, you are ready to create the main app file.
Let’s start by creating a project
directory:
- mkdir project
The first file will be the __init__.py
file for the project:
- nano project/__init__.py
This app will use the Flask app factory pattern with blueprints. One blueprint handles the regular routes, which include the index and the protected profile page. Another blueprint handles everything auth-related. In a real app, you can break down the functionality in any way you like, but the solution covered here will work well for this tutorial.
This file will have the function to create the app, which will initialize the database and register the blueprints. At the moment, this will not do much, but it will be needed for the rest of the app.
You will need to initialize SQLAlchemy, set some configuration values, and register the blueprints here:
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
# init SQLAlchemy so we can use it later in our models
db = SQLAlchemy()
def create_app():
app = Flask(__name__)
app.config['SECRET_KEY'] = 'secret-key-goes-here'
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///db.sqlite'
db.init_app(app)
# blueprint for auth routes in our app
from .auth import auth as auth_blueprint
app.register_blueprint(auth_blueprint)
# blueprint for non-auth parts of app
from .main import main as main_blueprint
app.register_blueprint(main_blueprint)
return app
Now that you have the main app file, start adding in the routes.
For the routes, you will use two blueprints.
For the main_blueprint
, you will have a home page (/
) and a profile page (/profile
).
First, create main.py
:
- nano project/main.py
Then add your main_blueprint
:
from flask import Blueprint
from . import db
main = Blueprint('main', __name__)
@main.route('/')
def index():
return 'Index'
@main.route('/profile')
def profile():
return 'Profile'
For the auth_blueprint
, you will have routes to retrieve both the login page (/login
) and the sign-up page (/signup
). Finally, you will have a logout route (/logout
) to log out an active user.
Next, create auth.py
:
- nano project/auth.py
Then add your auth_blueprint
:
from flask import Blueprint
from . import db
auth = Blueprint('auth', __name__)
@auth.route('/login')
def login():
return 'Login'
@auth.route('/signup')
def signup():
return 'Signup'
@auth.route('/logout')
def logout():
return 'Logout'
For the time being, define login
, signup
, and logout
with text returns. You will also have routes for handling the POST requests from login
and signup
. You will revisit this code later and update it with the desired functionality.
In a terminal, you can set the FLASK_APP
and FLASK_DEBUG
values:
- export FLASK_APP=project
- export FLASK_DEBUG=1
The FLASK_APP
environment variable instructs Flask on how to load the app. You would want this to point to where create_app
is located. For this tutorial, you will be pointing to the project
directory.
The FLASK_DEBUG
environment variable is enabled by setting it to 1
. This will enable a debugger that will display application errors in the browser.
Ensure that you are in the flask_auth_app
directory and then run the project:
- flask run
Now, in a web browser, you can navigate to the five possible URLs and see the text returned that was defined in auth.py
and main.py
.
For example, visiting localhost:5000/profile
displays: Profile
:
Once you have verified that the routes are behaving as expected, you can create the templates.
Next, create the templates that are used in the app. This is the first step before you can implement the actual login functionality.
The app will use four templates:
You will also have a base template that will have code common to each of the pages. In this case, the base template will have navigation links and the general layout of the page.
First, create a templates
directory under the project
directory:
- mkdir -p project/templates
Then create base.html
:
- nano project/templates/base.html
Next, add the following code to the base.html
file:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Flask Auth Example</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.min.css" />
</head>
<body>
<section class="hero is-primary is-fullheight">
<div class="hero-head">
<nav class="navbar">
<div class="container">
<div id="navbarMenuHeroA" class="navbar-menu">
<div class="navbar-end">
<a href="{{ url_for('main.index') }}" class="navbar-item">
Home
</a>
<a href="{{ url_for('main.profile') }}" class="navbar-item">
Profile
</a>
<a href="{{ url_for('auth.login') }}" class="navbar-item">
Login
</a>
<a href="{{ url_for('auth.signup') }}" class="navbar-item">
Sign Up
</a>
<a href="{{ url_for('auth.logout') }}" class="navbar-item">
Logout
</a>
</div>
</div>
</div>
</nav>
</div>
<div class="hero-body">
<div class="container has-text-centered">
{% block content %}
{% endblock %}
</div>
</div>
</section>
</body>
</html>
This code will create a series of menu links to each page of the application. It also establishes a block for content
that can be overwritten by child templates.
Note: This tutorial uses Bulma to handle styling and layout. For a deeper dive into Bulma, consider reading the official Bulma documentation.
Next, create templates/index.html
:
- nano project/templates/index.html
Add the following code to the newly created file to add content to the page:
{% extends "base.html" %}
{% block content %}
<h1 class="title">
Flask Login Example
</h1>
<h2 class="subtitle">
Easy authentication and authorization in Flask.
</h2>
{% endblock %}
This code will create a basic index page with a title and subtitle.
Next, create templates/login.html
:
- nano project/templates/login.html
This code generates a login page with fields for Email and Password. There is also a checkbox to “remember” a logged in session.
{% extends "base.html" %}
{% block content %}
<div class="column is-4 is-offset-4">
<h3 class="title">Login</h3>
<div class="box">
<form method="POST" action="/login">
<div class="field">
<div class="control">
<input class="input is-large" type="email" name="email" placeholder="Your Email" autofocus="">
</div>
</div>
<div class="field">
<div class="control">
<input class="input is-large" type="password" name="password" placeholder="Your Password">
</div>
</div>
<div class="field">
<label class="checkbox">
<input type="checkbox" name="remember">
Remember me
</label>
</div>
<button class="button is-block is-info is-large is-fullwidth">Login</button>
</form>
</div>
</div>
{% endblock %}
Next, create templates/signup.html
:
- nano project/templates/signup.html
Add the following code to create a sign-up page with fields for email
, name
, and password
:
{% extends "base.html" %}
{% block content %}
<div class="column is-4 is-offset-4">
<h3 class="title">Sign Up</h3>
<div class="box">
<form method="POST" action="/signup">
<div class="field">
<div class="control">
<input class="input is-large" type="email" name="email" placeholder="Email" autofocus="">
</div>
</div>
<div class="field">
<div class="control">
<input class="input is-large" type="text" name="name" placeholder="Name" autofocus="">
</div>
</div>
<div class="field">
<div class="control">
<input class="input is-large" type="password" name="password" placeholder="Password">
</div>
</div>
<button class="button is-block is-info is-large is-fullwidth">Sign Up</button>
</form>
</div>
</div>
{% endblock %}
Next, create templates/profile.html
:
- nano project/templates/profile.html
Add this code to create a page with a title that is hardcoded to welcome Anthony:
{% extends "base.html" %}
{% block content %}
<h1 class="title">
Welcome, Anthony!
</h1>
{% endblock %}
You will revisit this code later to dynamically greet any user.
Once you have added the templates, you can update the return statements in each of the routes to return the templates instead of the text.
Next, update main.py
by modifying the import line and the routes for index
and profile
:
from flask import Blueprint, render_template
...
@main.route('/')
def index():
return render_template('index.html')
@main.route('/profile')
def profile():
return render_template('profile.html')
Now you will update auth.py
by modifying the import line and routes for login
and signup
:
from flask import Blueprint, render_template
...
@auth.route('/login')
def login():
return render_template('login.html')
@auth.route('/signup')
def signup():
return render_template('signup.html')
Once you’ve made these changes, here is what the sign-up page looks like if you navigate to /signup
:
You can navigate to the pages for /
, /login
, and /profile
as well.
Leave /logout
alone for now because it will not display a template later.
The user model represents what it means for the app to have a user. This tutorial will require fields for an email
address, password
, and name
. In future applications, you may decide you want much more information to be stored per user. You can add things like birthdays, profile pictures, locations, or any user preferences.
Models created in Flask-SQLAlchemy are represented by classes that then translate to tables in a database. The attributes of those classes then turn into columns for those tables.
Create the User
model:
- nano project/models.py
Define the User
model:
from . import db
class User(db.Model):
id = db.Column(db.Integer, primary_key=True) # primary keys are required by SQLAlchemy
email = db.Column(db.String(100), unique=True)
password = db.Column(db.String(100))
name = db.Column(db.String(1000))
This code defines a User
with columns for an id
, email
, password
, and name
.
Now that you’ve created a User
model, you can move on to configuring your database.
You will be using an SQLite database. You could create an SQLite database on your own, but let’s have Flask-SQLAlchemy do it for you. You already have the path of the database specified in the __init__.py
file, so you will need to tell Flask-SQLAlchemy to create the database in the Python REPL.
Ensure that you are still in the virtual environment and in the flask_auth_app
directory.
If you stop your app and open up a Python REPL, you can create the database using the create_all
method on the db
object:
- from project import db, create_app, models
- db.create_all(app=create_app()) # pass the create_app result so Flask-SQLAlchemy gets the configuration.
Note: If using the Python interpreter is new to you, you can consult the official documentation.
You will now see a db.sqlite
file in your project directory. This database will have the user table in it.
For the sign-up function, you will take the data the user submits to the form and add it to the database. You will need to make sure a user with the same email address does not already exist in the database. If it does not exist, then you need to make sure you hash the password before placing it into the database.
Note: Storing passwords in plaintext is considered a poor security practice. You will generally want a complex hashing algorithm and salt to keep passwords secure.
Let’s start by adding a second function to handle the POST form data. Gather the data passed from the user.
Update auth.py
by modifying the import line and implementing signup_post
:
from flask import Blueprint, render_template, redirect, url_for
...
@auth.route('/signup')
def signup():
return render_template('signup.html')
@auth.route('/signup', methods=['POST'])
def signup_post():
# code to validate and add user to database goes here
return redirect(url_for('auth.login'))
Create the function and add a redirect. This will provide a user experience of a successful sign-up and being directed to the Login Page.
Now, let’s add the rest of the code necessary for signing up a user. Use the request object to get the form data.
Continue to update auth.py
by adding imports and implementing signup_post
:
from flask import Blueprint, render_template, redirect, url_for, request
from werkzeug.security import generate_password_hash, check_password_hash
from .models import User
from . import db
...
@auth.route('/signup', methods=['POST'])
def signup_post():
# code to validate and add user to database goes here
email = request.form.get('email')
name = request.form.get('name')
password = request.form.get('password')
user = User.query.filter_by(email=email).first() # if this returns a user, then the email already exists in database
if user: # if a user is found, we want to redirect back to signup page so user can try again
return redirect(url_for('auth.signup'))
# create a new user with the form data. Hash the password so the plaintext version isn't saved.
new_user = User(email=email, name=name, password=generate_password_hash(password, method='sha256'))
# add the new user to the database
db.session.add(new_user)
db.session.commit()
return redirect(url_for('auth.login'))
This code will check to see if a user with the same email address exists in the database.
Now that you have the sign-up method completed, you will be able to create a new user. Let’s test the form to create a user.
There are two ways you can verify if the sign-up was successful:
Let’s add code to let the user know the email already exists and direct them to go to the login page. By calling the flash
function, you can send a message to the next request, which in this case, is the redirect. The page the user is redirected to will then have access to that message in the template.
First, add the flash
before you redirect to the sign-up page.
from flask import Blueprint, render_template, redirect, url_for, request, flash
...
@auth.route('/signup', methods=['POST'])
def signup_post():
...
if user: # if a user is found, we want to redirect back to signup page so user can try again
flash('Email address already exists')
return redirect(url_for('auth.signup'))
To get the flashed message in the template, you can add this code before the form.
...
{% with messages = get_flashed_messages() %}
{% if messages %}
<div class="notification is-danger">
{{ messages[0] }}. Go to <a href="{{ url_for('auth.login') }}">login page</a>.
</div>
{% endif %}
{% endwith %}
<form method="POST" action="/signup">
This code will display the message "Email address already exists. Go to login page."
if the email address is already in the database.
At this point, you can run the application and attempt to sign up with an email address that already exists.
The login method is similar to the sign-up function. In this case, you will compare the email
address entered to see if it is in the database. If so, you will test the password
the user provided by hashing the password
the user passes in and comparing it to the hashed password
in the database. You will know the user has entered the correct password
when both hashed password
s match.
Once the user has passed the password check, you will know that they have the correct credentials and you can log them in using Flask-Login. By calling login_user
, Flask-Login will create a session for that user that will persist as the user stays logged in, which will allow the user to view protected pages.
You can start with a new route for handling the data submitted with POST. And redirect to the profile page when the user successfully logs in:
...
@auth.route('/login')
def login():
return render_template('login.html')
@auth.route('/login', methods=['POST'])
def login_post():
# login code goes here
return redirect(url_for('main.profile'))
Now, you need to verify if the user has the correct credentials:
...
@auth.route('/login', methods=['POST'])
def login_post():
# login code goes here
email = request.form.get('email')
password = request.form.get('password')
remember = True if request.form.get('remember') else False
user = User.query.filter_by(email=email).first()
# check if the user actually exists
# take the user-supplied password, hash it, and compare it to the hashed password in the database
if not user or not check_password_hash(user.password, password):
flash('Please check your login details and try again.')
return redirect(url_for('auth.login')) # if the user doesn't exist or password is wrong, reload the page
# if the above check passes, then we know the user has the right credentials
return redirect(url_for('main.profile'))
Let’s add in the block in the template so the user can see the flashed message:
...
{% with messages = get_flashed_messages() %}
{% if messages %}
<div class="notification is-danger">
{{ messages[0] }}
</div>
{% endif %}
{% endwith %}
<form method="POST" action="/login">
You now have the ability to say a user has been logged in successfully, but there is nothing to log the user into.
Flask-Login can manage user sessions. Start by adding the UserMixin
to your User model. The UserMixin
will add Flask-Login attributes to the model so that Flask-Login will be able to work with it.
from flask_login import UserMixin
from . import db
class User(UserMixin, db.Model):
id = db.Column(db.Integer, primary_key=True) # primary keys are required by SQLAlchemy
email = db.Column(db.String(100), unique=True)
password = db.Column(db.String(100))
name = db.Column(db.String(1000))
Then, you need to specify the user loader. A user loader tells Flask-Login how to find a specific user from the ID that is stored in their session cookie. Add this in the create_app
function along with init
code for Flask-Login:
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
from flask_login import LoginManager
...
def create_app():
...
db.init_app(app)
login_manager = LoginManager()
login_manager.login_view = 'auth.login'
login_manager.init_app(app)
from .models import User
@login_manager.user_loader
def load_user(user_id):
# since the user_id is just the primary key of our user table, use it in the query for the user
return User.query.get(int(user_id))
Finally, add the login_user
function before redirecting to the profile page to create the session:
from flask_login import login_user
from .models import User
from . import db
...
@auth.route('/login', methods=['POST'])
def login_post():
...
# if the above check passes, then we know the user has the right credentials
login_user(user, remember=remember)
return redirect(url_for('main.profile'))
With Flask-Login setup, use the /login
route. When everything is in place, you will see the profile page.
At this point, you can run the application and attempt to log in.
If your name is not Anthony, then you will see that your name is wrong on the profile page. The goal is for the profile to display the name in the database. You will need to protect the page and then access the user’s data to get the name
.
To protect a page when using Flask-Login, add the @login_requried
decorator between the route and the function. This will prevent a user that is not logged in from seeing the route. If the user is not logged in, the user will get redirected to the login page, per the Flask-Login configuration.
With routes that are decorated with the @login_required
decorator, you can use the current_user
object inside of the function. This current_user
represents the user from the database and provides access all of the attributes of that user with dot notation. For example, current_user.email
, current_user.password
, and current_user.name
, and current_user.id
will return the actual values stored in the database for the logged-in user.
Let’s use the name
of the current_user
and send it to the template:
from flask import Blueprint, render_template
from flask_login import login_required, current_user
from . import db
...
@main.route('/profile')
@login_required
def profile():
return render_template('profile.html', name=current_user.name)
Then in the profile.html
file, update the page to display the name
value:
...
<h1 class="title">
Welcome, {{ name }}!
</h1>
Once a user visits the profile page, they will be greeted by their name
.
Now to update the logout view, call the logout_user
function in a route for logging out:
from flask_login import login_user, login_required, logout_user
...
@auth.route('/logout')
@login_required
def logout():
logout_user()
return redirect(url_for('main.index'))
Use the @login_required
decorator because it does not make sense to log out a user that is not logged in to begin with.
After a user logs out and tries to view the profile page again, they will be presented with an error message:
This is because Flask-Login flashes a message when the user is not allowed to access a page.
One last thing to do is put if
statements in the templates to display only the links relevant to the user:
...
<div class="navbar-end">
<a href="{{ url_for('main.index') }}" class="navbar-item">
Home
</a>
{% if current_user.is_authenticated %}
<a href="{{ url_for('main.profile') }}" class="navbar-item">
Profile
</a>
{% endif %}
{% if not current_user.is_authenticated %}
<a href="{{ url_for('auth.login') }}" class="navbar-item">
Login
</a>
<a href="{{ url_for('auth.signup') }}" class="navbar-item">
Sign Up
</a>
{% endif %}
{% if current_user.is_authenticated %}
<a href="{{ url_for('auth.logout') }}" class="navbar-item">
Logout
</a>
{% endif %}
</div>
Before the user logs in, they will have the option to log in or sign-up. After they have logged in, they can go to their profile or log out.
With that, you have successfully built your app with authentication.
In this tutorial, you used Flask-Login and Flask-SQLAlchemy to build a login system for an app. You covered how to authenticate a user by first creating a user model and storing the user information. Then you had to verify the user’s password was correct by hashing the password from the form and comparing it to the one stored in the database. Finally, you added authorization to the app by using the @login_required
decorator on a profile page so only logged-in users can see that page.
What you created in this tutorial will be sufficient for smaller apps, but if you wish to have more functionality from the beginning, you may want to consider using either the Flask-User or Flask-Security libraries, which are both built on top of the Flask-Login library.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hello,
Very nice tutorial.
However, I cannot figure out how to listen on to another IP than 127.0.0.1
I tried this:
export FLASK_APP=“myAppName”; export FLASK_DEBUG=1; flask run --host=0.0.0.0:8080
and that
if name == “main”: app.run(host=‘0.0.0.0’, port=8080, debug=True)
Unfortunately, I was not successful.
Note that the app is running fine on 127.0.0.1
Any idea?
Thanks.
P.
Could you provide more details about the db table, name and column parameters? I would like to create the table in postgres db manually.
Please this did not work for me. From the login section, I got this error AttributeError: ‘User’ object has no attribute ‘is_active’
Why? I followed every step but I’m getting that error. Any idea please?
Place the “login_user” function call after “check_password_hash” if block in auth.py.
The reason behind your error is, cannot login the user if the user is none.
Hey, thank you for this tutorial.
I’m running into an issue when every time I’m trying to login the user it won’t pass the hash check and flashes an error. What could be the problem?
Thank you for your tutorial!
I created a repo for it and I’m going to further combine it with my project. It’s fully functioning right now (after fixing some bugs) and I’d like you to check it out :)
Hi, thank you for the tutorial. However, as I followed through, I encountered this error ImportError: cannot import name ‘LoginManager’ from ‘flask_login’. May I know how to solve it?
I am getting a flask.cli.NoAppException: Could not import “flask_auth.flask-apps”. when I access the signup page, after Adding Routes section.
This is the best article about flask_login I have ever found! Thanks for your sharing.
This tutorial has small issues because of which one cannot follow it exactly as mentioned. Sometimes the author uses login()
and sometimes login_post()
same for signup()
and signup_post()
. All references made are like auth.login
and auth.signup
so it seems it should have been login()
and signup()
.
Could you please fix it or share a finally code in some repository which is a working one?
Also, in __init__()
method there is function inside function see below code.
...
from flask_login import LoginManager
...
def create_app():
...
db.init_app(app)
login_manager = LoginManager()
login_manager.login_view = 'auth.login'
login_manager.init_app(app)
from .models import User
@login_manager.user_loader
def load_user(user_id):
# since the user_id is just the primary key of our user table, use it in the query for the user
return User.query.get(int(user_id))
where to exactly place this load_user(user_id) is confusing.
This comment has been deleted
Hello, thank you for the tutorial. I’m hoping someone here might offer some guidance.
I am confused about how exactly to modify the main.py
and auth.py
files, as the examples that the author shows at the end of Step 4 don’t exactly match the instructions given in the context of the original code those files were created with.
Original project/main.py
:
from flask import Blueprint
from . import db
main = Blueprint('main', __name__)
@main.route('/')
def index():
return 'Index'
@main.route('/profile')
def profile():
return 'Profile'
Said to modify to:
from flask import Blueprint, render_template
...
@main.route('/')
def index():
return render_template('index.html')
@main.route('/profile')
def profile():
return render_template('profile.html')
Does this mean that the lines from . import db
and main = Blueprint('main', __name__)
should be replaced by ...
, or left as is?
Original project/auth.py
:
from flask import Blueprint
from . import db
auth = Blueprint('auth', __name__)
@auth.route('/login')
def login():
return 'Login'
@auth.route('/signup')
def signup():
return 'Signup'
@auth.route('/logout')
def logout():
return 'Logout'
The author states:
Now you will update auth.py by modifying the import line and routes for login and signup:
…and gives this example:
from flask import Blueprint, render_template
...
@auth.route('/login')
def login():
return render_template('login.html')
@auth.route('/signup')
def signup():
return render_template('signup.html')
Same question as above, but additionally - the modified example omits the following entirely:
@auth.route('/logout')
def logout():
return 'Logout'
Does this mean the route for ‘Logout’ should be removed?
I guess another way to ask this is: should the example modifications given by the author be copied verbatim to replace the original contents of main.py
and auth.py
? Also, I’m not clear as to why the modified code wasn’t used as the original code. What purpose did the original code serve in the process up until it needed to be modified?
In any case, I tried modifying each file in multiple ways, but came back with errors on all. For example, the /signup
page shows: flask.cli.NoAppException: Could not import "project.project".
I’d paste the traceback if I didn’t think it would cause this comment to become too cluttered, and it seems the author doesn’t reply much to comments with questions here, anyway, so I’ll stick to one thing at a time, and hope anyone else might point me in the right direction.
Hey, when trying to run I get werkzeug.routing.BuildError: Could not build url for endpoint ‘auth.login’. Did you mean ‘auth.login_post’ instead?
Please help
For anyone struggling with the database creation. It’s missing an import part for the models. I’ve added models at the end after create_app else won’t create the user table specified.
>>> from project import db, create_app, models
>>> db.create_all(app=create_app())
Hope it helps someone getting stuck.
Hi, it is a very good sample. I am new to Flask. I have tried other samples (from other websites) but cannot link together (init, db, login). After copy the code, I have these problems:
(venv) C:\Users\user\Desktop\flask_auth_app>flask run
can I repeat the step of “from project import db, create_app”? After db is created, I deleted db and re-do. Then the db cannot be created again. I need to exit the shell and start from beginning
Is there any tutorial of db that I can learn more?
This comment has been deleted
Thanks for the great tutorial Anthony, I have one question. In the init.py you have “from .auth import auth as auth_blueprint” I am wondering about the dot ’.’ in the ’.auth’. Is this saying ‘in the current directory from file auth.py get auth. Or is this referencing something Flask configuration that will remember the location of the auth file to be referenced from the application object attributes? Thanks.
is there a way to change the login and sign up in the navbar to a name after login
Hello - wondering if anyone can help with the database configuration aspect of this tutorial.
I have followed closely but I am receiving the error ‘AttributeError: can’t set attribute’ when initiating the db.create_all command within Python.
I have used the suggestion in the comments to import models but still no joy. Anyone able to explain where I’m going wrong?
thanks!
I am having an issue after setting up registration where whenever I try to register a user I get the error sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) no such table: users
. To solve this I had to open the SQLite database in this program and make the table myself. Super annoying to figure out but afterwards it is pretty easy to make. Just make sure you make the email (and probably name) unique.
Hello, thank you for the tutorial is very interesting and cover many aspect like authentication and Sql alchemy as well. Anyway I copied the code to test it but I have troubles in the import and variables. in models.py on the line: from . import db, I have the error unresolved import
someone had same problem ?
Hi Herbert
Thanks a lot for sharing. This is an awesome tutorial and I have learnt quite a bit by successfully implementing the steps.
I created a github repository with code from this tutorial with branches for the end of each step, with minor style modifications to the code. sharing here in case it’s useful for anyone else.
In the signup.html file there is a hard coded URL in the form tag:
<form method="POST" action="/signup">
This did not work for me because I am experimenting with this module in a non-root location on my webserver. But it works if I replace it with:
<form method="POST" action="{{ url_for('auth.signup_post') }}">
Hi! Thank you for this nice tutorial. I’ve tried to add something that updates the user name and mail but faced with difficulties about it. Any idea ? tnx, T.
Thanks, Anthony for sharing this tutorial. This is an awesome tutorial and I have learnt quite a bit by successfully implementing these steps.
Hi Anthony
Nice tutorial! I am beginner with Python and Flask. The tutorial was very helpfull and easy to understand. It helped me to start with my own Python Web-App. Almost everything worked after the first try.
Only one small issue in “Step 6 — Configuring the Database”: The DB was created but unfortunately without table “User” because of missing line in init.py with link to the user model.
from .models import User
This line was added in later steps. So creating the DB in step 6 would lead in errors.
i am having an issue with the database it seems, when i try and do the register after step configuring database this error comes up on my local host. sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) no such table: user
This is a great tutorial, and I’ve got it all working. However, I tried protecting another page in my application, and the login session doesn’t “persist” between pages in the app. It requires me to login for each page that is protected with the @login_required" decorator.
How can I persist the user session for all pages?
Hi guys,
Thanks by the tutorial, finally I could undertand something about web development.
But, I made an application using this amazing project, and I want to deploy it in Heroku.
How can I do it?
See ya,
Minor error: The label on the second code block in part 7 should be changed to read project/auth.py
instead of auth.py
, so that it is consistent with the other code blocks for the same file. This is confusing – as it makes it seem like there is another auth.py
file outside the project/
directory.
Sorry, but where am I supposed to add the headers for CORS? I keep getting errors… :/
Please update the tutorial.
The db.create_all() function is not working anymore, instead after the db.init_app
in __init__.py
, put the next two lines.
with app.app_context():
db.create_all()
How can I write a function in this backend, wich handle a post request from axios, and I can get the information about the logged in user?
Hi! The best tutorial on this topic I’ve ever seen. Correctly explained and it is clear where, what and in which file changes or additions should be made. Thank you!
instead of method=‘sha256’ I used method=‘scrypt’ but the “password” field should then be larger, in my case: password varchar(300)
@login_manager.user_loader
def load_user(user_id):
_# return User.query.get(int(user_id))_
user = None
print(f'{user_id=}')
with Session.begin() as session:
user = session.scalars(select(User).where(User.id == user_id)).first()
if user:
print(f'{user=}')
return User(email=user.email, )
always prints >> user_id=‘None’
I got this working and it is running online as I am using pythonanywhere to host it for free. It took me quite some time even though I have PHP dev experience, but new to python.
Anyway I found that a few tweaks were needed, probably because I am using in non-root location like ‘dosh’ said in an earlier comment.
The main tweaks I had to make were:
1 - change any reference to auth.signup to auth.signup_post (same for auth.login)
2 - change the auth.py
as follows:
@auth.route('/login', methods=['GET', 'POST'])
def login_post():
if request.method == "GET":
return render_template('login.html')
and same again for signup_post() lower down.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.