{% extends "logged_in.html" %} {% block title %}Change password{% endblock %} {% block content %}

Password change

{% if not reg_h_is_confirmed %} This page allows you to change your password.
However, that function only becomes available once you have confirmed
your account by klicking on the link in the confirmation e-mail.

To go back to your home directory, please click here. {% else %} For security, please enter your old password. Then enter the new password you would like. The new password needs to be entered twice to check against typos.

{% if form.old_password.errors %}{{ form.old_password.html_error_list }}{% endif %}

{{ form.old_password }}

{% if form.new_password1.errors %}{{ form.new_password1.html_error_list }}{% endif %}

{{ form.new_password1 }}

{% if form.new_password2.errors %}{{ form.new_password2.html_error_list }}{% endif %}

{{ form.new_password2 }}

{% endif %} {% endblock %}