kpsul/templates/registration/password_change_form.html
2016-05-21 23:57:36 +02:00

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 %}