{% extends "site_base.html" %} {% load i18n %} {% load uni_form_tags %} {% block head_title %}{% trans "Signup" %}{% 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_uni_form }} {% if redirect_field_value %} {% endif %}
{# @@@ currently OpenID signup is not supported via signup codes #} {% if not code %}

{% trans "Or sign in with your OpenID" %}:

{# @@@ why isn't this just does as a form object ? #}
{% csrf_token %}
{% if url_required %}

This field is required.

{% else %}
{% endif %}
{% if request.user.is_authenticated %}
logout
{% endif %} {% endif %} {% url terms as terms_url %} {% url privacy as privacy_url %}

{% blocktrans %}By clicking "Sign Up", you are indicating that you have read and agree to the Terms of Use and Privacy Policy.{% endblocktrans %}

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

{% endif %} {% endblock %} {% block extra_body %} {% endblock %}