{% extends "html_base.html" %} {% block body %}

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

{% if not user_manager.enable_confirm_email %} This Minimal App has no Email confirmation or Forgot password.
See Basic App for an app with these features enabled. {% endif %}
{% 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 %}