mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-16 15:45:51 +00:00
7 lines
169 B
HTML
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 %}
|