{% extends "authopenid/base_profile.html" %} {% load i18n %} {% block title %}{{ block.super }} | {% trans "Change my email" %}{% endblock %} {% block breadcrumb %}{{ block.super }} » {% trans "Change email address" %}{% endblock %} {% block content_title %}
{% 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 %}
{{ msg }}
{% endif %}