{% extends "base.html" %} {% load i18n %} {% comment %} Copyright 2010-2013 Canonical Ltd. This software is licensed under the GNU Affero General Public License version 3 (see the file LICENSE). {% endcomment %} {% block html_extra %}data-qa-id="enter_token"{% endblock %} {% block title %}{% trans "Enter confirmation code" %}{% endblock %} {% block text_title %}

{% trans "Enter confirmation code" %}

{% endblock %} {% block content %}

{% blocktrans %}We've sent you a confirmation code. Enter that code below, and the email address at which you received it.{% endblocktrans %}

{% csrf_token %}


{{ form.confirmation_code }} {% if form.confirmation_code.errors %} {{ form.confirmation_code.errors|join:"" }} {% endif %}


{{ form.email }} {% if form.email.errors %} {{ form.email.errors|join:"" }} {% endif %}

{% endblock %}