{% extends "registration/base.html" %} {% comment %} vim:ft=htmldjango: {% endcomment %} {% block title %} {{ block.super }} - Change Password {% endblock %} {% load i18n %} {% block content %} {% include "django_messages/inlines/navigation.html" %}

Password change


Please enter your old password,
for security's sake, and then enter your new password twice so we can verify you typed it in correctly.

{{ form.old_password }} {{ form.old_password.errors }}
{{ form.new_password1 }} {{ form.new_password1.errors }}
{{ form.new_password2 }} {{ form.new_password2.errors }}
 

{% endblock %}