July 2019
Beginner to intermediate
302 pages
9h 38m
English
The Flask-Login extension makes the implementation of the Remember me feature pretty simple. To do so, just pass remember=True to the login_user() method. This will save a cookie on the user's computer, and Flask-Login will automatically use this to log the user in automatically if the session is active. You should try implementing this on your own.