{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Change Password" %} - {{ block.super }}{% endblock %} {% block content %}

{% trans "Change Password" %}

{% trans "Please enter your current password and a new password to secure your account." %}

{% csrf_token %} {% if form.non_field_errors %} {% endif %} {% for field in form %}
{{ field }}
{% if field.errors %}

{{ field.errors.0 }}

{% endif %} {% if field.help_text %}

{{ field.help_text }}

{% endif %}
{% endfor %}
{% trans "Cancel" %}
{% endblock %}