Files
test-auth/app/templates/registration/password_change_form.html
2011-03-15 12:02:34 +00:00

12 lines
270 B
HTML

{% extends "registration/registration_base.html" %}
{% block title %}Change password{% endblock %}
{% block content %}
<form method='post' action=''>
<table>
{{ form }}
</table>
<input type='submit' value="Change password" />
{% csrf_token %}
</form>
{% endblock %}