templates/pages/account/booker-registration.html.twig line 1

Open in your IDE?
  1. {% extends 'pages/baseNoFooter.html.twig' %}
  2. {% block stylesheets %}
  3.     <!-- CUSTOM CSS -->
  4.     <link href="{{ asset('dev/css/tailwind.min.css')}}" rel="stylesheet" />
  5.     <link href="{{ asset('dev/css/pages/home.css')}}" rel="stylesheet" />
  6.     <link href="{{ asset('dev/css/header2.css')}}" rel="stylesheet">
  7.     <link href="{{ asset('dev/css/forms.css')}}" rel="stylesheet">
  8.     <link href="{{ asset('dev/css/colors.css')}}" rel="stylesheet">
  9.     <link href="{{ asset('dev/css/pages/mot-de-passe-oublie.css')}}" rel="stylesheet">
  10. {% endblock %}
  11. {% block title %}{{"Profile"|trans }}{% endblock %} 
  12. {% block content %}
  13.     <main >
  14.         <section id="hero" class="background-image"  style="height: 100vh;">
  15.             <div class="opacity-mask"  >
  16.                 <div class="login-page-new__main-bg" ></div>
  17.             </div>
  18.             <div class="container row relative z-10 flex justify-center" style="margin-top:27vh;">
  19.                 <div class="col-md-5 col-sm-12 relative">
  20.                     <img src="{{ asset('dev/img/left-fill.svg') }}" class="absolute z-0" style="right: 9px;top: -97px;">
  21.                     <div class="w-full bg-white rounded-lg shadow dark:border md:mt-0 normal-case   xl:p-0 dark:bg-gray-800 dark:border-gray-700">
  22.                         <div class="p-6 space-y-4 md:space-y-6 sm:p-8 z-10 relative">
  23.                             <h1 class="text-base text-left font-bold leading-tight tracking-tight text-gray-900 mt-3 md:text-lg dark:text-white">
  24.                                 Créer un compte
  25.                                 <br>
  26.                                 <span style="color: #ffaa00;" class="text-2xl md:text-3xl text-gray-900 tracking-wide">Inscription</span>
  27.                             </h1>
  28.                             <label for="terms" class="font-light text-gray-500 sm:text-sm text-xs mt-2 text-left">Inscrivez vous et rejoignez la communauté Bookoach. Enregistrez vos information dans ce formulaire d'inscription :</label>
  29.                             <form class="space-y-4 md:space-y-5 text-start mt-6" id="myForm" action="#" novalidate>
  30.                                 <!-- Step 1: Email Input -->
  31.                                 <div id="step-1" class="form-step">
  32.                                     <div class="w-full bg-gray-200 rounded-full h-2.5 dark:bg-gray-700 mb-1">
  33.                                         <div class="bg-orange h-2.5 rounded-full" style="width: 33%"></div>
  34.                                     </div>
  35.                                     <p class="flex font-medium justify-end leading-tight mb-3 mt-1 mx-1 text-sm text-gray-900">1/3</p>
  36.                                     <div class="form-floating mb-3">
  37.                                         <input type="email" name="email" class="block font-medium form-control p-2.5 rounded-lg sm:text-sm text-gray-900 w-full ps-5 " id="email" placeholder="name@example.com" aria-required="true" aria-invalid="true">
  38.                                         <label class="mb-2 ps-5 text-sm font-medium text-gray-900 dark:text-white" for="email">Adresse email</label>
  39.                                         <div class="absolute" style="top: 15px;left: 13px;color: #a1a1a1;">
  40.                                             <i load-hicon="email"></i>
  41.                                         </div>
  42.                                     </div>
  43.                                     <button type="button" id="next-step-1" class="bg-primary-600 font-medium hover:bg-primary-700 px-5 py-2.5 rounded-lg text-center text-sm text-white w-full mb-3" style="background: #ffaa00;">Suivant</button>
  44.                                 </div>
  45.                                 <!-- Step 2: Full Name Input -->
  46.                                 <div id="step-2" class="form-step hidden">
  47.                                     <div class="w-full bg-gray-200 rounded-full h-2.5 dark:bg-gray-700 mb-1">
  48.                                         <div class="bg-orange h-2.5 rounded-full" style="width: 66%"></div>
  49.                                     </div>
  50.                                     <div class="flex font-medium justify-end leading-tight mb-3 mt-1 mx-1 text-sm text-gray-900">
  51.                                         <p>2/3</p>
  52.                                     </div>
  53.                                     <div class="form-floating mb-3">
  54.                                         <input type="text" name="fullname" class="block font-medium form-control p-2.5 rounded-lg sm:text-sm text-gray-900 w-full ps-5" id="fullname" placeholder="John Doe" aria-required="true">
  55.                                         <label class="mb-2 ps-5 text-sm font-medium text-gray-900 dark:text-white" for="fullname">Nom complet</label>
  56.                                         <div class="absolute" style="top: 15px;left: 13px;color: #a1a1a1;">
  57.                                             <i load-hicon="user"></i>
  58.                                         </div>
  59.                                     </div>
  60.                                     <div class="flex gap-2">
  61.                                         <button type="button" id="back-step-2" class="bg-gray-400 font-medium hover:bg-gray-500 px-5 py-2.5 rounded-lg text-center text-sm text-white w-full mb-3">Retour</button>
  62.                                         <button type="button" id="next-step-2" class="bg-primary-600 font-medium hover:bg-primary-700 px-5 py-2.5 rounded-lg text-center text-sm text-white w-full mb-3" style="background: #ffaa00;">Suivant</button>
  63.                                     </div>
  64.                                 </div>
  65.                                 <!-- Step 3: Password Input -->
  66.                                 <div id="step-3" class="form-step hidden">
  67.                                     <div class="w-full bg-gray-200 rounded-full h-2.5 dark:bg-gray-700 mb-1">
  68.                                         <div class="bg-orange h-2.5 rounded-full" style="width: 100%"></div>
  69.                                     </div>
  70.                                     <div class="flex font-medium justify-end leading-tight mb-3 mt-1 mx-1 text-sm text-gray-900">
  71.                                         <p>3/3</p>
  72.                                     </div>
  73.                                     <div class="form-floating relative password mb-3">
  74.                                         <input type="password" name="password" style="height: 58px;"
  75.                                                class="form-control bsm:text-sm rounded-lg ps-5 font-medium text-gray-900 focus:ring-primary-600 focus:border-primary-600 block w-full p-2.5 placeholder-gray-900"
  76.                                                id="password" placeholder="Mot de passe" >
  77.                                         <div class="absolute" style="top: 15px;left: 13px;color: #a1a1a1;">
  78.                                             <i load-hicon="locked"></i>
  79.                                         </div>
  80.                                     </div>
  81.                                     <div class="flex gap-2">
  82.                                         <button type="button" id="back-step-3" class="bg-gray-400 font-medium hover:bg-gray-500 px-5 py-2.5 rounded-lg text-center text-sm text-white w-1/2 mb-3">Retour</button>
  83.                                         <button type="submit" class="bg-primary-600 font-medium hover:bg-primary-700 px-2 py-2.5 rounded-lg text-center text-sm text-white w-1/2 mb-3" style="background: #ffaa00;">Créer un compte</button>
  84.                                     </div>
  85.                                 </div>
  86.                             </form>
  87.                             <p class="text-xs text-center font-light text-gray-500 my-2">Déjà un compte ? <a href="#" class="font-medium text-primary-600 hover:underline dark:text-primary-500">Connectez-vous ici</a></p>
  88.                             <div class="row socials mt-3">
  89.                                 <div class="relative flex  items-center">
  90.                                     <div class="flex-grow border-t border-gray-300"></div>
  91.                                     <span class="flex-shrink mx-2 text-gray-300">ou</span>
  92.                                     <div class="flex-grow border-t border-gray-300"></div>
  93.                                 </div>
  94.                                 <div class="col-md-12 my-2 ">
  95.                                     <a href="#" class="w-full h-full  hover:bg-gray-100 text-gray-900 hover:text-gray-900 rounded-lg inline-flex items-center justify-center px-3 py-2.5 border border-gray-300 border hover:border-gray-800">
  96.                                         <img src="{{ asset('dev/img/google-logo.png') }}" class="ps-2 object-fill" style="height: 20px;/* width: 80px; *//* object-fit: cover; */">
  97.                                         <div class="text-left rtl:text-right ">
  98.                                             <div class="mt-1 ms-1 white  text-sm font-semibold whitespace-nowrap">Se connecter</div>
  99.                                         </div>
  100.                                     </a>
  101.                                 </div>
  102.                             </div>
  103.                         </div>
  104.                     </div>
  105.                 </div>
  106.             </div>       
  107.         </section>
  108.     </main>
  109.     <!-- End main -->
  110. {% endblock %}
  111. {% block javascripts %}
  112.     <script src="{{ asset('dev/js/hicon.min.js')}}"></script>
  113.     <script> hicon.replace();</script>
  114.     <script src="{{ asset('dev/js/jquery.validate.min.js')}}" type="module"></script>
  115.     <script src="{{ asset('dev/js/registration-coach.js')}}" type="module"></script>
  116.     <script src="{{ asset('dev/js/create-account.js')}}">  feather.replace();</script>
  117.     <script src="{{ asset('dev/js/home.js')}}"></script>   
  118.     <!-- Card Validator format --> 
  119.     <script src="{{ asset('dev/js/feather.min.js') }}"></script>      
  120.     <script src="{{ asset('dev/js/datepicker.min.js') }}"></script>  
  121. {% endblock %}