{% extends 'base.html.twig' %} {% block title %}Register {% endblock %} {% block body %} {{ block("header", "header.html.twig") }}

Inscription

{{ form_start(registrationForm) }} {{ form_row(registrationForm.mail) }} {{ form_row(registrationForm.plainPassword, { label: 'Password' }) }} {{ form_row(registrationForm.responsable.nom) }} {{ form_row(registrationForm.responsable.prenom) }} {{ form_row(registrationForm.responsable.rue) }} {{ form_row(registrationForm.responsable.ville) }} {{ form_row(registrationForm.responsable.code_p, { label: 'Code Postal' }) }} {{ form_row(registrationForm.responsable.email) }} {{ form_row(registrationForm.responsable.tel) }} {{ form_row(registrationForm.agreeTerms) }} {{ form_end(registrationForm) }}
{{ block("footer", "footer.html.twig") }}{% endblock %}