templates/registration/account/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2.     {% block title %}Recov'up : Créez votre compte et commencez à prendre soin de vous !{% endblock %}
  3.     {% block body %}
  4.         {% include '_partials/app.html.twig' with {
  5.             'signup': false,
  6.             'login': true,
  7.             'title' : 'Créer un compte'
  8.         } only %}
  9.         <section class="section u-wrapper-small u-text-center">
  10.             <h2><b>Créer votre compte gratuitement</b></h2>
  11.             <p>pour commencer votre parcours de rééducation à travers votre espace personnel et sécurisé.</p>
  12.         </section>
  13.         <section class="u-wrapper-small">
  14.             <div class="button-container u-margin-bottom-2">
  15.                 <a class="classic-button mod-switch u-margin-left-auto" href="{{ path('accountpro_registration') }}">Basculer en compte médical</a>
  16.             </div>
  17.             <div style="display: flex; flex-direction:column;gap: 16px;margin-bottom: 16px">
  18.                 {{ component('flash', {
  19.                     noscroll : true
  20.                 }) }}
  21.             </div>
  22.             {{ form_start(form, {'attr':{'class':'form-auto'}}) }}
  23.             {{ form_row(form.email) }}
  24.             {{ form_row(form.firstname) }}
  25.             {{ form_row(form.name) }}
  26.             {{ form_row(form.activationCode) }}
  27.             <div style="display: block;">
  28.                 {{ form_widget(form.cgu) }}
  29.                 {{ form_label(form.cgu) }}
  30.                 {{ form_errors(form.cgu) }}
  31.             </div>
  32.             <button type="submit">C'est parti !</button>
  33.             {{ form_end(form) }}
  34.             <section class="u-margin-top-4">
  35.                 <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>
  36.             </section>
  37.         </section>
  38.         <section style="position:fixed; bottom: 15px; right: 15px; z-index: 100;">
  39.             <a target="_blank" rel="noreferrer nooperer" href="https://tawk.to/chat/62c6d95f7b967b1179987d82/1g7cc27oh">
  40.                 <img src="/img/icons/chat.svg" class="tchat-icon-programme" alt="" width="100" height="100">
  41.                 <img src="/img/icons/chat.svg" class="tchat-icon-mobile" alt="" width="70" height="70">
  42.             </a>
  43.         </section>
  44.     {% endblock %}