{% extends "site_base.html" %} {% load i18n %} {% load bootstrap_tags %} {% load ifsetting_tag %} {% block head_title %}{% trans "Sign Up" %}{% endblock %} {% block body %}

{% trans "Sign Up" %}

{% if user.is_authenticated %}

{% trans "You are already logged in." %}

{% else %}

{% trans "Already have an account?" %} {% trans "Log in" %}!

{% csrf_token %} {{ form|as_bootstrap }} {% if redirect_field_value %} {% endif %}
{% ifsetting ACCOUNT_USE_OPENID %}
{% trans "Or sign in with your OpenID" %} {% csrf_token %}
{% endifsetting %} {% include "account/_terms.html" %}

{% blocktrans %}If you have any trouble creating your account, contact us at {{ CONTACT_EMAIL }}.{% endblocktrans %}

{% endif %}
{% include "account/_signup_sidebar.html" %}
{% endblock %} {% block extra_body %} {% endblock %}