{% include 'header.html.twig' %}
{% include 'menu.html.twig' %} {{ form_start(form) }}
{{ form_errors(form) }}

Création de compte

{{ form_row(form.gender) }}
{{ form_row(form.lastname, {'attr': {'placeholder': 'Votre nom de famille'}} ) }}
{{ form_row(form.firstname, {'attr': {'placeholder': 'Votre prénom'}} ) }}
{{ form_row(form.username, {'attr': {'placeholder': 'Votre identifiant'}} ) }}
{{ form_row(form.plainPassword.first, {'attr': {'placeholder': 'Mot de passe'}} ) }}
{{ form_row(form.plainPassword.second, {'attr': {'placeholder': 'Confirmer mot de passe'}} ) }}
{{ form_row(form.email, {'attr': {'placeholder': 'adresse@domaine.com'}} ) }}
{{ form_row(form.phone, {'attr': {'placeholder': '0123456789'}} ) }}

{{ form_end(form) }}

(Notez que tout les champs marquer d'un * sont obligatoire pour la création d'un compte)

{% include 'footer.html.twig' %}