{% extends theme('base.html') %} {% from theme('macros/banner_warning.html') import banner_warning %} {% import theme('macros/forms.html') as forms with context %} {% block content %}

{{ _('Sign up') }}

{{ _('Why create an account?') }}

{{ _("Fields preceded by a star (*) are required.") }}

{% if config.CAPTCHETAT_BASE_URL %} {{ forms.render_fields(register_user_form, exclude=[register_user_form.submit, register_user_form.captcha_code, register_user_form.captchetat_uuid]) }} {% else %} {{ forms.render_fields(register_user_form, exclude=[register_user_form.submit]) }} {% endif %} {% block extra_tos %} {% endblock %}
{% if config.CAPTCHETAT_BASE_URL %}
{% for error in register_user_form.captcha_code.errors %}

{{ error }}

{% endfor %}
{% endif %}
{% if config.PROCONNECT_OPENID_CONF_URL %}

{{ _('or') }}

{{ _('What is ProConnect ?') }}

{% endif %}
{% endblock %} {% block extra_js %} {% if config.CAPTCHETAT_BASE_URL %} {% endif %} {% endblock %}