{% extends 'base.html.twig' %} {% block title %}Inscription{% endblock %} {% block main %} {################################} {# Loop for the Flash Message #} {################################} {% for flashError in app.flashes('verify_email_error') %} {% endfor %} {################################} {# Form of user's registration #} {################################}

Inscrivez-vous

{{ form_start(registrationForm) }}
{{ form_label(registrationForm.email, 'Email') }} {{ form_row(registrationForm.email, {'attr': {'placeholder': " Entrez Votre Email...",'class': "email-input"} })}}
{{ form_label(registrationForm.plainPassword, 'Mot de passe') }} {{ form_row(registrationForm.plainPassword, {'attr': {'placeholder': " Entrez Votre Mot De Passe....",'class': "password-input"} })}}
Lisez Moi(rgpd)
{{ form_row(registrationForm.RGPD, {'attr': {'class': "rgpd-input"} })}}
{{ form_end(registrationForm) }}
{% endblock main %} {% block footer%} {% endblock footer%}