This example shows how to integrate Flask-Security (https://pythonhosted.org/Flask-Security/) with Flask-Admin using the SQLAlchemy backend. It only implements the 'login' & 'register' views, but you could follow the same approach for using all of Flask-Security's builtin views (e.g. 'forgot password', 'change password', 'reset password', 'send confirmation' and 'send login').
To run this example:
Clone the repository:
git clone https://github.com/flask-admin/flask-admin.git cd flask-admin
Create and activate a virtual environment:
virtualenv env source env/bin/activate
Install requirements:
pip install -r 'examples/auth/requirements.txt'
Run the application:
python examples/auth/app.py
The first time you run this example, a sample sqlite database gets populated automatically. To suppress this behaviour, comment the following lines in app.py::
if not os.path.exists(database_path):
build_sample_db()