ScoDoc-PE/app/templates/auth/reset_password.j2

17 lines
432 B
Plaintext
Raw Normal View History

2021-12-28 16:17:07 +01:00
{# -*- mode: jinja-html -*- #}
{% extends "base.j2" %}
2021-05-29 18:22:51 +02:00
{% import 'bootstrap/wtf.html' as wtf %}
{% block app_content %}
<h1>Changez votre mot de passe ScoDoc</h1>
<div class="row" style="margin-top: 30px;">
2021-12-28 16:17:07 +01:00
<div class="col-md-4">Votre identifiant: <b>{{user.user_name}}</b></div>
</div>
<div class="row" style="margin-top: 30px;">
2021-05-29 18:22:51 +02:00
<div class="col-md-4">
{{ wtf.quick_form(form) }}
</div>
</div>
{% endblock %}