templates/registration/register.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html lang="en">
  3.   <head>
  4.     <!-- Required meta tags -->
  5.     <meta charset="utf-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.     <title>Login Form</title>
  8.     <!-- Google Fonts -->
  9.     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
  10.     <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700|Raleway:300,400,400i,500,500i,700,800,900" rel="stylesheet">
  11.     <!-- Bootstrap CSS -->
  12.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
  13.     
  14.    
  15.     <link rel="stylesheet" href="css/login/login.css">
  16.     <script src="css/login/verification.js"></script>
  17.   </head>
  18.   <body>
  19.     <main class="d-flex align-items-center min-vh-100 py-3 py-md-0">
  20.       <div class="container" style ="padding-top: 50px;padding-bottom:50px">
  21.         <div class="card login-card" >
  22.           <div class="row no-gutters">
  23.             
  24.             <div class="col-md-7">
  25.               <div class="card-body">
  26.                 
  27.                  <h3>LOGIN TO HATLONE</h3>
  28.                 
  29.             
  30.                 
  31.                 {{ form_start(registrationForm) }}
  32.                     <fieldset class="mb-3">
  33.                        <legend style = 'font-size:14px'>Mon identité</legend>
  34.                         {{ form_row(registrationForm.lastname) }}
  35.                         {{ form_row(registrationForm.firstname) }}
  36.                         {{ form_row(registrationForm.email) }}
  37.                     </fieldset>
  38.                     <fieldset class="mb-3">
  39.                         <legend style = 'font-size:14px'>Mes coordonnées</legend>
  40.                         {{ form_row(registrationForm.address) }}
  41.                         {{ form_row(registrationForm.zipcode) }}
  42.                         {{ form_row(registrationForm.city) }}
  43.                     </fieldset>
  44.                     {{ form_row(registrationForm.plainPassword, {
  45.                         label: false
  46.                     }) }}
  47.                     <div class="policies-password">
  48.                                 <div class="chech-wrap1 mr-3 text-left">
  49.                                     <div id="check0">
  50.                                         <span>&#x2022; 8 Character minimum</span>
  51.                                     </div>
  52.                                     <div id="check1">
  53.                                         <span>&#x2022; 1 Uppercase character</span>
  54.                                     </div>
  55.                                 </div>
  56.                                 
  57.                                 <div class="chech-wrap1 text-left">
  58.                                     <div id="check2">
  59.                                         <span>&#x2022; 1 Number</span>
  60.                                     </div>
  61.                                     <div id="check3">
  62.                                     <span>&#x2022; 1 Lowercase character</span>
  63.                                     </div>
  64.                                 </div>
  65.                      </div>
  66.                      <div style="padding-top:30px ; text-align:left" >
  67.                      {{ form_row(registrationForm.RGPDConsent) }}
  68.                      </div>
  69.                     
  70.                     <button type="submit" class="btn btn-primary btn-lg my-3">M'inscrire</button>
  71.                     
  72.                     <div class="signup-wrap">
  73.                         <p class="login-card-description text-center">I have an account<a href="{{ path('app_login') }}"> Sign in </a>  </p>
  74.                     
  75.                     </div>
  76.                 {{ form_end(registrationForm) }}  
  77.                 
  78.                 
  79.               </div>
  80.             </div>
  81.             <div class="col-md-5 image-wrap">
  82.                 <img src="images/login/image.JPG" class="login-card-img">
  83.               </div>
  84.           </div>
  85.         </div>
  86.       </div>
  87.     </main>
  88.     <!-- Option 1: Bootstrap Bundle with Popper -->
  89.     <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
  90.     <script>
  91.        
  92.     </script>
  93.   </body>
  94. </html>