{% extends "base.html" %} {% load url from future %} {% load i18n %} {% block content %} {% if registration_open %}

{% trans "Registration" %}

{% trans "By registering you agree to use your name and email in Git commits and provide your contribution under license defined by each translated project." %}

{% if registration_email %}

{% trans "Register using email" %}

{% if form.errors %}

{% trans "Please fix errors in registration form." %}

{% endif %}
{% csrf_token %} {{ form.as_table }}

{% endif %} {% if registration_backends %}

{% trans "Third party registration" %}

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

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

{% endif %} {% endblock %}