{% extends "base" %} {% block title %} | Change Password{% endblock %} {% block body %}

Change Password

{% if not password_form.is_bound or not password_form.is_valid %}
{% if password_form.non_field_errors %} {% endif %} {% for field in password_form %} {% endfor %}
{% for error in password_form.non_field_errors %}{{ error }} {% endfor %}
{{ field.label_tag}} {{ field }} {% for error in field.errors %} {{ error }}{% endfor %}
{% else %} {% if not exceptions %} {% else %} {% endif %}
Success Your password was successfully changed.
Oops There were some problems changing your password:
{% for host, exception in exceptions.iteritems %}{{ host }}: {{ exception }}
{% endfor %}
You should try changing your password again (possibly using different options).
{% endif %}

{% endblock %} {% block js %} {% endblock %} {% block id %}$Id${% endblock %} {# vim: set filetype=htmldjango: #}