{% extends "base_content.html" %} {% load i18n %} {% block content %}

{% trans "Account: change email" %}

{% blocktrans %}This is where you can change the email address associated with your account. Please keep this email address up to date so we can send you a password-reset email if you request one.{% endblocktrans %}

{% if form.errors %}

{% trans "Please correct errors below:" %}
{% if form.email.errors %} {{ form.email.errors|join:", " }} {% endif %} {% if form.password.errors %} {{ form.password.errors|join:", " }} {% endif %}

{% endif %} {% if msg %}

{{ msg }}

{% endif %}
{{ form.email }}
{{ form.password }}

{% endblock %}