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

INSCRIPTION

{{ form_errors(registrationForm) }} {{ form_start(registrationForm) }} {{ form_row(registrationForm.pseudo) }} {{ form_row(registrationForm.email) }} {# {{ form_label(registrationForm.email) }} {{ form_errors(registrationForm.email) }} #} {{ form_row(registrationForm.plainPassword, { label: 'Password' }) }} {{ form_row(registrationForm.agreeTerms, { label: 'CGU' }) }} {# #} {{ form_end(registrationForm) }}
Ordinateur
{% endblock %}