{% extends "logged_in.html" %} {% block title %}Changing of e-mail{% endblock %} {% block content %}

Email change

{% if not reg_h_is_confirmed %} This page allows you to change your e-mail address.
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 %} Confirmation e-mails will be sent to your old and new e-mail address.

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

{{ form.email1 }}

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

{{ form.email2 }}

{% endif %} {% endblock %}