{% extends "base.html" %} {% load i18n %} {% load gargoyle_tags %} {% 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="new_account"{% endblock %} {% block title %}{% trans "Create account" %}{% endblock %} {% block extra_header_top %} {% endblock %} {% block extra_header %} {% include "widgets/passwords_head_content.html" %} {% endblock %} {% block text_title %} {% if rpconfig and rpconfig.logo_url %} {% endif %}

{% blocktrans %}Create an {{ brand_escription }} account{% endblocktrans %}

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

{% blocktrans %}Enter the following information.{% endblocktrans %}

{% if token %}{% url 'new_account' token as new_account_url %} {% else %}{% url 'new_account' as new_account_url %}{% endif %}
{% csrf_token %}


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


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

{% include "widgets/passwords.html" %} {% if captcha_required %}

{% include "widgets/recaptcha.html" %}

{% endif %}

{% trans "or" %} {% include "common/cancel_link.html" %}

{% endblock %}