euscan-ng/euscanwww/djeuscan/templates/registration/password_change_form.html
2012-08-08 10:47:58 +02:00

25 lines
460 B
HTML

{% extends "registration/_registration_base.html" %}
{% load url from future %}
{% block title %}Change password{% endblock %}
{% block content %}
<h2>
Change password
</h2>
<form method='post' action='.'>
{% csrf_token %}
<table class="table">
{{ form }}
<tr>
<td></td>
<td>
<input class="btn" type='submit' value="Change password" />
</td>
</tr>
</table>
</form>
{% endblock %}