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

Inscription

{{ form_errors(registrationForm) }} {{ form_start(registrationForm) }} {{ form_row(registrationForm.email, {label: 'Email :', row_attr: {'class': 'form-row'}}) }} {{ form_row(registrationForm.nom, {label: 'Nom :', row_attr: {'class': 'form-row'}}) }} {{ form_row(registrationForm.prenom, {label: 'Prénom :', row_attr: {'class': 'form-row'}}) }} {{ form_row(registrationForm.ville, {label: 'Ville :', row_attr: {'class': 'form-row'}}) }} {{ form_row(registrationForm.codePostal, {label: 'Code Postal :', row_attr: {'class': 'form-row'}}) }} {{ form_row(registrationForm.rue, {label: 'Rue :', row_attr: {'class': 'form-row'}}) }} {{ form_row(registrationForm.telephone, {label: 'Téléphone :', row_attr: {'class': 'form-row'}}) }} {{ form_row(registrationForm.plainPassword, {label: 'Mot de passe :', row_attr: {'class': 'form-row'}}) }} {{ form_row(registrationForm.agreeTerms, {label: "J'accepte les conditions", row_attr: {'class': 'checkbox-row'}}) }}
{{ form_end(registrationForm) }}
Déjà inscrit ? Connectez-vous !
{% endblock %}