{% 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 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 %}

{% ifswitch ALLOW_UNVERIFIED %} {% blocktrans %}Enter the following information.{% endblocktrans %} {% else %} {% blocktrans %}Enter the following information, and we will send you instructions on how to confirm your account.{% endblocktrans %} {% endifswitch %}

{% 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 %}

{# {{workflow}} #} {% if old %} {% endif %} {% trans "or" %} {% include "common/cancel_link.html" %}

{% endblock %}