{% extends "base.html" %} {% block title %}Change Password{% endblock %} {% block content_header %}

Change Password

{% endblock %} {% block content %}
Change password for {{ user.username }}

{% csrf_token %} {% if form.errors %}

{% if form.errors.items|length == 1 %}Please correct the error below.{% else %}Please correct the errors below.{% endif %}

{% endif %}
{{ form.old_password.label_tag }} {{ form.old_password.errors }}
{{ form.new_password1.label_tag }} {{ form.new_password1.errors }}
{{ form.new_password2.label_tag }} {{ form.new_password2.errors }}

{% endblock %}