{% extends "base.html" %} {% load i18n %} {% block main-content %}
{% if form.errors %}
{% if form.errors.items|length == 1 %} {% trans "Please correct the error below and try again." %} {% else %} {% trans "Please correct the errors below and try again." %} {% endif %}
{% endif %}

{% csrf_token %}

{% trans 'Change Password' %}

{{ 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 %}