Files
beflask/app/templates/login.html
2023-06-05 12:06:56 +02:00

7 lines
169 B
HTML

{% extends 'base.html' %}
{% from 'bootstrap5/form.html' import render_form %}
{% block content %}
<h2>Login</h2>
{{ render_form(form) }}
{% endblock content %}