{% if current_user.is_authenticated %}
{% endif %}
{% with msgs=get_flashed_messages(with_categories=true) %}
{% if msgs %}
{% for cat,msg in msgs %}
{{msg}}
{% endfor %}
{% endif %}
{% endwith %}
{% block content %}{% endblock %}
{% if current_user.is_authenticated %}{% endif %}
{% block scripts %}{% endblock %}