{% block stylesheets %} {% endblock %} {% block body %}
Cool Baby Academy

{% for flash_error in app.flashes('reset_password_error') %} {% endfor %}

Crée ton compte

Pour démarrer la Cool Baby Academy, commence par créer ton compte.
Attention : Indique bien l'email utilisé lors de ton achat.



{{ form_start(registrationForm) }}
{{ form_label(registrationForm.email, 'Ton email') }} {{ form_widget(registrationForm.email, { 'attr': {'class': 'form-control'} }) }}
{{ form_row(registrationForm.plainPassword, { label: 'Choisis ton mot de passe' }) }}
{% set terms_link %}{% trans %}conditions générales d'utilisation{% endtrans %}{% endset %} {% set general_terms_and_conditions %}{{ 'les %general_terms_and_conditions%.'|trans({ '%general_terms_and_conditions%': terms_link })|raw }}{% endset %}
{{ form_errors(registrationForm.agreeTerms) }} {{ form_widget(registrationForm.agreeTerms, { label: "J'accepte" }) }}

{{ form_end(registrationForm) }}

{% endblock %}