{% extends "base.html" %} {% from 'macros/forms.html' import with_errors %} {% block content_title %}Log in{% endblock %} {% block content %}
{% if csrf_token %}{# Support for flask-seasurf #}{% endif %} {% for field in form %}
{{ field.label(class="form-label") }} {{ with_errors(field) }}
{% endfor %}
{% endblock %}