{% extends 'base.html.twig' %}
{% block title %}Recov'up : Créez votre compte et commencez à prendre soin de vous !{% endblock %}
{% block body %}
{% include '_partials/app.html.twig' with {
'signup': false,
'login': true,
'title' : 'Créer un compte'
} only %}
<section class="section u-wrapper-small u-text-center">
<h2><b>Créer votre compte gratuitement</b></h2>
<p>pour commencer votre parcours de rééducation à travers votre espace personnel et sécurisé.</p>
</section>
<section class="u-wrapper-small">
<div class="button-container u-margin-bottom-2">
<a class="classic-button mod-switch u-margin-left-auto" href="{{ path('accountpro_registration') }}">Basculer en compte médical</a>
</div>
<div style="display: flex; flex-direction:column;gap: 16px;margin-bottom: 16px">
{{ component('flash', {
noscroll : true
}) }}
</div>
{{ form_start(form, {'attr':{'class':'form-auto'}}) }}
{{ form_row(form.email) }}
{{ form_row(form.firstname) }}
{{ form_row(form.name) }}
{{ form_row(form.activationCode) }}
<div style="display: block;">
{{ form_widget(form.cgu) }}
{{ form_label(form.cgu) }}
{{ form_errors(form.cgu) }}
</div>
<button type="submit">C'est parti !</button>
{{ form_end(form) }}
<section class="u-margin-top-4">
<p>Vous avez déjà un compte ? <a class="a" href="{{ path('account_login') }}">Connectez-vous</a> ou <a class="a" href="{{ path('app_forgot_password_request') }}">Changez votre mot de passe</a>.</p>
</section>
</section>
<section style="position:fixed; bottom: 15px; right: 15px; z-index: 100;">
<a target="_blank" rel="noreferrer nooperer" href="https://tawk.to/chat/62c6d95f7b967b1179987d82/1g7cc27oh">
<img src="/img/icons/chat.svg" class="tchat-icon-programme" alt="" width="100" height="100">
<img src="/img/icons/chat.svg" class="tchat-icon-mobile" alt="" width="70" height="70">
</a>
</section>
{% endblock %}