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. {% block stylesheets %}
  6.     {{ encore_entry_link_tags('app') }}
  7. {% endblock %}
  8. {% block javascripts %}
  9.     {{ encore_entry_script_tags('app') }}
  10.     {{ encore_entry_script_tags('security_register') }}
  11. {% endblock %}
  12. </head>
  13. <body>
  14.     <!-- NOTICE: You can use the _analytics.html partial to include production code specific code & trackers -->
  15.     
  16.     <main>
  17.         <!-- Section -->
  18.         <section class="vh-lg-100 mt-5 mt-lg-0 bg-soft d-flex align-items-center">
  19.             <div class="container">
  20.                 
  21.                 <div class="row justify-content-center form-bg-image" >
  22.                     <div class="col-12 d-flex align-items-center justify-content-center">
  23.                         <div class="bg-white shadow border-0 rounded border-light p-4 p-lg-5 w-100 fmxw-500">
  24.                             <div class="text-center text-md-center mb-4 mt-md-0">
  25.                                 <h1 class="mb-0 h3">Create Account </h1>
  26.                             </div>
  27.                             <form id="register" method="POST" class="mt-4">
  28.                                 <!-- Form -->
  29.                                 <div class="form-group mb-4">
  30.                                     <label for="email">Username</label>
  31.                                     <div class="input-group">
  32.                                         <span class="input-group-text" id="basic-addon1">
  33.                                             <i class="fa-solid fa-user"></i>
  34.                                         </span>
  35.                                         <input type="text" name="username" class="form-control" placeholder="p.nom" id="username" autofocus required>
  36.                                     </div>  
  37.                                 </div>
  38.                                 <div class="form-group mb-4">
  39.                                     <label for="email">Nom</label>
  40.                                     <div class="input-group">
  41.                                         <span class="input-group-text" id="basic-addon1">
  42.                                             <i class="fa-solid fa-user"></i>
  43.                                         </span>
  44.                                         <input type="text" name="nom" class="form-control" placeholder="nom" id="nom" autofocus required>
  45.                                     </div>  
  46.                                 </div>
  47.                                 <div class="form-group mb-4">
  48.                                     <label for="email">Prenom</label>
  49.                                     <div class="input-group">
  50.                                         <span class="input-group-text" id="basic-addon1">
  51.                                             <i class="fa-solid fa-user"></i>
  52.                                         </span>
  53.                                         <input type="text" name="prenom" class="form-control" placeholder="prenom" id="prenom" autofocus required>
  54.                                     </div>  
  55.                                 </div>
  56.                                 <div class="form-group mb-4">
  57.                                     <label for="email">Email</label>
  58.                                     <div class="input-group">
  59.                                         <span class="input-group-text" id="basic-addon1">
  60.                                             <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>
  61.                                         </span>
  62.                                         <input type="email" name="email" class="form-control" placeholder="example@company.com" id="email" autofocus required>
  63.                                     </div>  
  64.                                 </div>
  65.                                 <!-- End of Form -->
  66.                                 <div class="form-group">
  67.                                     <!-- Form -->
  68.                                     <div class="form-group mb-4">
  69.                                         <label for="password">Password</label>
  70.                                         <div class="input-group">
  71.                                             <span class="input-group-text" id="basic-addon2">
  72.                                                 <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>
  73.                                             </span>
  74.                                             <input type="password" name="password" placeholder="Password" class="form-control" id="password" required>
  75.                                         </div>  
  76.                                     </div>
  77.                                     <!-- End of Form -->
  78.                                     <!-- Form -->
  79.                                     <div class="form-group mb-4">
  80.                                         <label for="confirm_password">Confirm Password</label>
  81.                                         <div class="input-group">
  82.                                             <span class="input-group-text" id="basic-addon2">
  83.                                                 <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>
  84.                                             </span>
  85.                                             <input type="password" name="passwordc" placeholder="Confirm Password" class="form-control" id="confirm_password" required>
  86.                                         </div>  
  87.                                     </div>
  88.                                     <!-- End of Form -->
  89.                                    
  90.                                 </div>
  91.                                 <div class="d-grid">
  92.                                     <button type="submit" class="btn btn-gray-800">Sign up</button>
  93.                                 </div>
  94.                             </form>
  95.                             
  96.                         </div>
  97.                     </div>
  98.                 </div>
  99.             </div>
  100.         </section>
  101.     </main>    
  102. </body>
  103. </html>