{% extends 'base_auth.html.twig' %} {% block title %}Register{% endblock %} {% block body %}
{{ form_errors(registrationForm) }} {{ form_start(registrationForm, {'attr': {'id': 'registration-form'}}) }} {% for message in app.flashes('error') %} {{ message }} {% endfor %}

{% trans %}CREER UN COMPTE{% endtrans %}

{% trans %}Vous y êtes presque !{% endtrans %}

{{ form_start(registrationForm, {'attr': {'id': 'registration-form'}}) }} {{ form_row(registrationForm.email) }} {{ form_row(registrationForm.firstname) }} {{ form_row(registrationForm.lastname) }} {{ form_row(registrationForm.country) }} {{ form_row(registrationForm.plainPassword) }}
{% trans %}Déjà un compte ?{% endtrans %} {% trans %}Se connecter{% endtrans %}
{{ form_end(registrationForm) }}

Copyright © EBS-CE ACADEMY 2023

{% endblock %}