{% block stylesheets %}
{% endblock %}
{% block body %}
{% for flash_error in app.flashes('reset_password_error') %}
{{ flash_error }}
{% endfor %}
ETAPE 2
Enregistre ton bébé
{{ form_start(registrationForm) }}
{{ form_label(registrationForm.email, 'Votre email') }} {{ form_widget(registrationForm.email, { 'attr': {'class': 'form-control'} }) }}
{{ form_row(registrationForm.plainPassword, { label: 'Mot de passe' }) }}
{{ form_row(registrationForm.agreeTerms, { label: "J'accepte les conditions générales d'utilisation" }) }}
S'enregistrer
{{ form_end(registrationForm) }}
{% endblock %}