{% extends "base.html" %} {% from 'macros/forms.html' import with_errors %} {% block content_title %}Log in{% endblock %} {% block content %}
{% for field in form %}

{{ field.label }} {{ with_errors(field) }}

{% endfor %}

{% endblock %}