{% extends 'base.html.twig' %} {% block title %}Inscription{% endblock %} {% block body %}

Inscription

{{ form_start(registrationForm) }}
{{ form_row(registrationForm.nom) }}
{{ form_row(registrationForm.prenom) }}
{{ form_row(registrationForm.adresse) }}
{{ form_row(registrationForm.zipcode, { label: 'Code postal' }) }}
{{ form_row(registrationForm.ville) }}
{{ form_row(registrationForm.email) }}
{{ form_row(registrationForm.plainPassword, { label: 'Mot de passe' }) }}
{{ form_row(registrationForm.agreeTerms, { label: 'J\'accepte les termes' }) }}
{{ form_end(registrationForm) }}
{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('home') }} {% endblock %}