{% extends "base.html" %} {% block title %}Change your password · {{ portal_name }}{% endblock %} {% block content %}

Change your password

You'll need your current one to set a new one.

{% csrf_token %} {% if form.non_field_errors %}

{{ form.non_field_errors|join:" " }}

{% endif %} {% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text|safe }}
{% endif %} {% if field.errors %}

{{ field.errors|join:" " }}

{% endif %}
{% endfor %}
Cancel

Forgotten your current password? Email yourself a reset link instead.

{% endblock %}