{% extends 'Application/' ~ settings.get("theme") ~'/base.html.twig' %} {% block title %}Register {% endblock %} {% block body %}

{{ 'Inscription'|trans }}

{% for flashError in app.flashes('verify_email_error') %} {% endfor %}

{{ 'join_our_community'|trans }}

{{ 'join_our_community_desc'|trans }}

{% for message in app.flashes('success') %}
{{ message }}
{% endfor %} {% for message in app.flashes('error') %}
{{ message }}
{% endfor %} {% if registrationForm is defined %} {{ form_start(registrationForm) }} {{ form_row(registrationForm.username, { label: 'Nom de compte'|trans, }) }} {{ form_row(registrationForm.email, { label: 'Adresse e-mail'|trans, }) }} {{ form_row(registrationForm.plainPassword, { label: 'Mot de passe'|trans }) }} {{ form_row(registrationForm.agreeTerms,{ label: 'register_agree'|trans} ) }} {{ form_end(registrationForm) }} {% else %}
{{'register_offline'|trans}}
{% endif %}
{% endblock %}