{% extends "base.html" %} {% load i18n %} {% load widget_tweaks %} {% block head_title %} {% trans "Change Password" %} {% endblock %} {% block content %}

{% trans "Change Password" %}

{% trans "Enter your current and new password below." %}

{% csrf_token %} {{ redirect_field }} {# IF USING CRISPY FORMS #} {# {{ form|crispy }} #} {# DEFAULT BOOTSTRAP FIELDS #} {% for field in form %}
{{ field|add_class:"form-control" }} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}
{% endblock %}