{% extends "base.html" %} {% load i18n %} {% comment %} Copyright 2010 Canonical Ltd. This software is licensed under the GNU Affero General Public License version 3 (see the file LICENSE). {% endcomment %} {% block title %}{% trans "Add an email" %}{% endblock %} {% block text_title %}

{% trans "Add an email address to your account" %}

{% endblock %} {% block content_id %}auth{% endblock %} {% block content %}

{% blocktrans %}Enter your email address, and we will send you instructions on how to confirm your account.{% endblocktrans %}

{% csrf_token %}


{{ form.newemail }} {% if form.newemail.errors %} {{ form.newemail.errors|first }} {% endif %}

{% trans "or" %} {% trans "cancel" %}

{% endblock %}