kpsul/gestioncof/templates/registration/password_change_form.html

14 lines
501 B
HTML
Raw Normal View History

{% extends "base_title.html" %}
2016-07-14 21:13:03 +02:00
{% load bootstrap %}
2016-07-14 21:13:03 +02:00
{% block page_size %}col-sm-8{% endblock %}
{% block realcontent %}
<h2>Changement de mot de passe</h2>
2016-07-14 21:13:03 +02:00
<form class="form-horizontal" method="post" action="{% url 'django.contrib.auth.views.password_change' %}">
{% csrf_token %}
2016-07-14 21:13:03 +02:00
{{ form | bootstrap }}
<input type="submit" class="btn btn-primary pull-right" value="Changer" />
</form>
{% endblock %}