forked from ScoDoc/ScoDoc
17 lines
434 B
HTML
17 lines
434 B
HTML
{# -*- mode: jinja-html -*- #}
|
|
{% extends "base.html" %}
|
|
{% import 'bootstrap/wtf.html' as wtf %}
|
|
|
|
{% block app_content %}
|
|
<h1>Changez votre mot de passe ScoDoc</h1>
|
|
|
|
<div class="row" style="margin-top: 30px;">
|
|
<div class="col-md-4">Votre identifiant: <b>{{user.user_name}}</b></div>
|
|
</div>
|
|
|
|
<div class="row" style="margin-top: 30px;">
|
|
<div class="col-md-4">
|
|
{{ wtf.quick_form(form) }}
|
|
</div>
|
|
</div>
|
|
{% endblock %} |