{%extends "base/page.html"%} {% load pgfilters %} {%block title%}Change password{%endblock%} {%block contents%}

Change password

From this form you can change the password of your community account.

{% csrf_token %}
{% if form.old_password.errors %} {% for e in form.old_password.errors %}
{{e}}
{% endfor %} {% endif %}
{{ form.old_password|field_class:"form-control" }}
{% if form.old_password.errors %} {% for e in form.new_password1.errors %}
{{e}}
{% endfor %} {% endif %}
{{ form.new_password1|field_class:"form-control" }}
{% if form.new_password2.errors %} {% for e in form.new_password2.errors %}
{{e}}
{% endfor %} {% endif %}
{{ form.new_password2|field_class:"form-control" }}
{%endblock%}