{% extends 'im/base_two_cols.html' %} {% load astakos_tags i18n %} {% block page.title %} {% trans "Signup" %} {% endblock %} {% block body.left %}
{% if third_party_token %} {% else %} {% endif %}
{% comment %}{% include "im/services_description.html" %}{% endcomment %} {% endblock body.left %} {% block body.right %}

{% trans "SIGN UP" %}

{% if not third_party_token and not signup_form.errors %}

{% trans "Choose one of the following sign up methods." %}

{% for provider_obj in auth_providers %} {% if provider_obj.is_available_for_create %} {% if provider_obj.module == 'local' %} CLASSIC SIGN UP {% if "local" in im_modules %} {% include "im/auth/signup_form.html" %} {% endif %} {% else %} {% if provider_obj.module == 'shibboleth' %} ACADEMIC SIGN UP {% else %} {{ provider_obj.get_title_display }} {% endif %} {% endif %} {% endif %} {% endfor %}
{% else %} {% include "im/auth/signup_form.html" %} {% endif %} {% endblock %}