{% extends base_template %} {% load i18n %} {% block content %}

{% trans "Enter your code" %}

{% if address %}

{% blocktrans %}We've emailed a code to {{ address }}. It expires shortly.{% endblocktrans %}

{% csrf_token %}

{% if error_message %}{{ error_message }}{% endif %}

{% trans "Use another method" %}
{% else %}

{% trans "This account has no email code to verify. Use another method, or contact support if you believe this is a mistake." %}

{% trans "Use another method" %}
{% endif %}
{% endblock %}