14 lines
425 B
HTML
14 lines
425 B
HTML
|
{% extends "base_title.html" %}
|
||
|
|
||
|
{% block homelink %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block realcontent %}
|
||
|
<h2>Changement de mot de passe</h2>
|
||
|
<form method="post" action="{% url 'django.contrib.auth.views.password_change' %}">
|
||
|
{% csrf_token %}
|
||
|
{{ form.as_p }}
|
||
|
<input type="submit" class="btn-submit" value="Changer" />
|
||
|
</form>
|
||
|
{% endblock %}
|