{% block body %}

{% block title %}Flask-User - {% if not user_manager.enable_email %}Minimal{% else %}Example{% endif %} App{% endblock %}

The Minimal App only prompts for a Username and disables Email related features.
The Basic App and the Roles Required App prompts for Usernames and Email addresses and enables the 'Confirm Email' and 'Forgot Password' features.
{% block flash_messages %} {%- with messages = get_flashed_messages(with_categories=true) -%} {% if messages %} {% for category, message in messages %} {% if category=='error' %} {% set category='danger' %} {% endif %}
{{ message }}
{% endfor %} {% endif %} {%- endwith %} {% endblock %} {% block content %} {% endblock %}
Copyright 2013 - SolidBuilds.com
{% endblock %}