{% extends 'base.html.twig' %} {% block title %}Register{% endblock %} {% block body %} {% for flash_error in app.flashes('verify_email_error') %} {% endfor %}

Register


{{ form_errors(registrationForm) }} {{ form_start(registrationForm) }} {{ form_row(registrationForm.surname, { label: 'Prénom' }) }}
{{ form_row(registrationForm.name, { label: 'Nom' }) }}
{{ form_row(registrationForm.phone, { label: 'Téléphone' }) }}
{{ form_row(registrationForm.email) }}
{{ form_row(registrationForm.plainPassword, { label: 'Mot de passe' }) }}
Utilisez la touche ctrl pour sélectionner plusieurs unités {{ form_row(registrationForm.unites, { attr: { class: 'mb-3 my-custom-class', size: '3' } }) }}
{{ form_row(registrationForm.codeOrganisme) }}
{{ form_row(registrationForm.agreeTerms, { label: 'J\'accepte les termes d\'utillisation' }) }}CGU

{{ form_end(registrationForm) }}
{% endblock %}