{% from "bootstrap5/form.html" import render_form %} {% block content %} {% include "header.html" %}

Log In

Welcome Back!
{% with messages = get_flashed_messages() %} {% if messages %} {% for message in messages %}

{{ message }}

{% endfor %} {% endif %} {% endwith %}
{{render_form(form, novalidate=True, button_map={"submit": "primary"}) }}
{% include "footer.html" %} {% endblock %}