{% extends "base.html" %} {% block content %}

{{ gettext('Change email address') }}

{{ form.new_email.label(class="label") }}
{{ form.new_email() }}
{% if form.new_email.errors is defined and form.new_email.errors %} {% for error in form.errors['new_email'] %}

{{ error }}

{% endfor %} {% endif %}
{{ form.current_password.label(class="label") }}
{{ form.current_password() }}
{% if form.current_password.errors is defined and form.current_password.errors %} {% for error in form.errors['current_password'] %}

{{ error }}

{% endfor %} {% endif %}
{% endblock %}