Initial commit
This commit is contained in:
commit
793bb6a488
182 changed files with 17153 additions and 0 deletions
27
templates/registration/password_change_form.html
Normal file
27
templates/registration/password_change_form.html
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block extrastyle %}
|
||||
<style>
|
||||
label { width: 100%; }
|
||||
.topmargin { margin-top: 1rem; }
|
||||
ul { padding: 0; list-style: none; color: #555; }
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<h1>Modification du mot de passe</h1>
|
||||
|
||||
<p>Pour des raisons de sécurité, saisissez votre ancien mot de passe puis votre nouveau mot de passe à deux reprises afin de vérifier qu'il est correctement saisi.</p>
|
||||
|
||||
<form method="post">
|
||||
{% csrf_token %}
|
||||
{% for field in form %}
|
||||
<label class="control-label" for="id_{{ field.name }}">{{ field.label }}</label>
|
||||
{{ field }}
|
||||
{{ field.help_text }}
|
||||
{% endfor %}
|
||||
<div class="row topmargin">
|
||||
<button class="btn btn-outline-primary btn-sm" type="submit">Modifier le mot de passe</button>
|
||||
</div>
|
||||
</form>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue