{% extends "site_base.html" %} {% load i18n %} {% load uni_form_tags %} {% block head_title %}{% trans "Signup" %}{% endblock %} {% block body_class %}full account{% endblock %} {% block body %}

{% trans "Sign Up" %}

{% if user.is_authenticated %}{% else %}

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

{% endif %}
{% if user.is_authenticated %}

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

{% else %}
{% csrf_token %}
{{ form|as_uni_form }} {% if redirect_field_value %} {% endif %}
{% comment %}@@@ currently OpenID signup is not supported via signup codes{% endcomment %} {% if not code %}

If you have OpenID, log in using that to begin using this site with OpenID right away:

{% include "account/_openid_login.html" %} {% endif %}

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

{# or #} {% endif %}
{% endblock %} {% block right %} {% endblock %} {% block extra_body %} {% load jquery_validation %} {% include_validation %} {% endblock %}