{% extends "base.html" %} {% load i18n %} {% load authnames %} {% load translations %} {% load crispy_forms_tags %} {% block breadcrumbs %}
  • {% trans "Registration" %}
  • {% endblock %} {% block content %} {% if registration_open %} {% if has_legal %}
    {% url 'legal:terms' as legal_url %} {% blocktrans %}Please read our Terms of Service prior to registration.{% endblocktrans %}
    {% else %} {% trans "By registering you agree to use your name and email in version control system commits and provide your contribution under license defined by each translated project." as msg %} {% show_message "info" msg %} {% endif %} {% if form.errors %} {% trans "Please fix errors in the registration form." as msg%} {% show_message "error" msg %} {% endif %}
    {% if registration_email %}

    {% trans "Register using email" %}

    {% csrf_token %} {{ form|crispy }} {% if captcha_form %} {{ captcha_form|crispy }} {% endif %}
    {% endif %} {% if registration_backends %}

    {% trans "Third party registration" %}

    {% for name in registration_backends %} {% auth_name name %} {% endfor %}
    {% endif %} {% else %}

    {% url 'contact' as contact_url %} {% trans "Sorry, but registrations on this site are disabled." %} {% trans "You can contact us for more details." %}

    {% endif %} {% endblock %}