{% extends 'admin/master.html' %} {% block body %} {{ super() }}

Flask-Admin example

Authentication

This example shows how you can use Flask-Security for authentication.

{% if not current_user.is_authenticated %}

You can register as a regular user, or log in as a superuser with the following credentials:

  • email: admin@example.com
  • password: admin

login register

{% endif %}

Back

{% endblock body %}