templates/security/register.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head> 
  4. <title>FCZ - Register</title>
  5. <link rel="icon" href="{{asset('Logos/_logo_FCZ.png')}}">
  6. {% block stylesheets %}
  7.     {{ encore_entry_link_tags('app') }}
  8. {% endblock %}
  9. {% block javascripts %}
  10.     {{ encore_entry_script_tags('app') }}
  11.     {{ encore_entry_script_tags('security_register') }}
  12. {% endblock %}
  13. </head>
  14. <body>
  15.     <!-- NOTICE: You can use the _analytics.html partial to include production code specific code & trackers -->
  16.     
  17.     <main>
  18.         <!-- Section -->
  19.         <section class="vh-lg-100 mt-5 mt-lg-0 bg-soft d-flex align-items-center">
  20.             <div class="container">
  21.                 
  22.                 <div class="row justify-content-center form-bg-image" >
  23.                     <div class="col-12 d-flex align-items-center justify-content-center">
  24.                         <div class="bg-white shadow border-0 rounded border-light p-4 p-lg-5 w-100 fmxw-500">
  25.                             <div class="text-center text-md-center mb-4 mt-md-0">
  26.                                 <h1 class="mb-0 h3">Create Account </h1>
  27.                             </div>
  28.                             <form id="register" method="POST" class="mt-4">
  29.                                 <!-- Form -->
  30.                                 <div class="form-group mb-4">
  31.                                     <label for="email">Username</label>
  32.                                     <div class="input-group">
  33.                                         <span class="input-group-text" id="basic-addon1">
  34.                                             <i class="fa-solid fa-user"></i>
  35.                                         </span>
  36.                                         <input type="text" name="username" class="form-control" placeholder="p.nom" id="username" autofocus required>
  37.                                     </div>  
  38.                                 </div>
  39.                                 <div class="form-group mb-4">
  40.                                     <label for="email">Nom</label>
  41.                                     <div class="input-group">
  42.                                         <span class="input-group-text" id="basic-addon1">
  43.                                             <i class="fa-solid fa-user"></i>
  44.                                         </span>
  45.                                         <input type="text" name="nom" class="form-control" placeholder="nom" id="nom" autofocus required>
  46.                                     </div>  
  47.                                 </div>
  48.                                 <div class="form-group mb-4">
  49.                                     <label for="email">Prenom</label>
  50.                                     <div class="input-group">
  51.                                         <span class="input-group-text" id="basic-addon1">
  52.                                             <i class="fa-solid fa-user"></i>
  53.                                         </span>
  54.                                         <input type="text" name="prenom" class="form-control" placeholder="prenom" id="prenom" autofocus required>
  55.                                     </div>  
  56.                                 </div>
  57.                                 <div class="form-group mb-4">
  58.                                     <label for="email">Email</label>
  59.                                     <div class="input-group">
  60.                                         <span class="input-group-text" id="basic-addon1">
  61.                                             <svg class="icon icon-xs text-gray-600" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884z"></path><path d="M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z"></path></svg>
  62.                                         </span>
  63.                                         <input type="email" name="email" class="form-control" placeholder="example@company.com" id="email" autofocus required>
  64.                                     </div>  
  65.                                 </div>
  66.                                 <!-- End of Form -->
  67.                                 <div class="form-group">
  68.                                     <!-- Form -->
  69.                                     <div class="form-group mb-4">
  70.                                         <label for="password">Password</label>
  71.                                         <div class="input-group">
  72.                                             <span class="input-group-text" id="basic-addon2">
  73.                                                 <svg class="icon icon-xs text-gray-600" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z" clip-rule="evenodd"></path></svg>
  74.                                             </span>
  75.                                             <input type="password" name="password" placeholder="Password" class="form-control" id="password" required>
  76.                                         </div>  
  77.                                     </div>
  78.                                     <!-- End of Form -->
  79.                                     <!-- Form -->
  80.                                     <div class="form-group mb-4">
  81.                                         <label for="confirm_password">Confirm Password</label>
  82.                                         <div class="input-group">
  83.                                             <span class="input-group-text" id="basic-addon2">
  84.                                                 <svg class="icon icon-xs text-gray-600" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z" clip-rule="evenodd"></path></svg>
  85.                                             </span>
  86.                                             <input type="password" name="passwordc" placeholder="Confirm Password" class="form-control" id="confirm_password" required>
  87.                                         </div>  
  88.                                     </div>
  89.                                     <!-- End of Form -->
  90.                                    
  91.                                 </div>
  92.                                 <div class="d-grid">
  93.                                     <button type="submit" class="btn btn-gray-800">Sign up</button>
  94.                                 </div>
  95.                             </form>
  96.                             
  97.                         </div>
  98.                     </div>
  99.                 </div>
  100.             </div>
  101.         </section>
  102.     </main>    
  103. </body>
  104. </html>