{% 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.captcha_id]) }} {% 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.MONCOMPETPRO_OPENID_CONF_URL %}

{{ _('or') }}

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

{% endif %}
{% endblock %}