{# vim: set ts=2 et sts=2 sw=2: #} {% extends "users/base.html" %} {% from "layout/errorlist.html" import errorlist %} {% set title = _('Change Email Address') %} {% set classes = 'change_email' %} {% block content %}

{{ _('Change email with Persona') }}

{{ errorlist(form) }} {% trans browserid_href='https://persona.org/', why_browserid='http://identity.mozilla.com/post/12950196039/deploying-browserid-at-mozilla' %}

What's this?

MDN has switched to Persona, a safe and simple way to sign in with just your e-mail address. Learn more about why Mozilla is using Persona.

{% endtrans %}

{% trans %} To change your MDN email, simply sign in below with the new email address. {% endtrans %}

{{ browserid_form }} {% if messages %}
    {% for message in messages %}
  • {{ message }}
  • {% endfor %}
{% endif %}
{% endblock content %}