mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-16 07:35:51 +00:00
9 lines
231 B
HTML
9 lines
231 B
HTML
{% extends 'base.html' %}
|
|
{% from 'bootstrap5/form.html' import render_form %}
|
|
{% block content %}
|
|
<div class="col-md-3 col-lg-offset-4">
|
|
<h2>Login</h2>
|
|
{{ render_form(form) }}
|
|
</div>
|
|
{% endblock content %}
|