templates/security/site.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head> 
  4. <title>FCZ - Login</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.  
  12.    
  13. {% endblock %}
  14. <!-- NOTICE: You can use the _analytics.html partial to include production code specific code & trackers -->
  15. </head>
  16. <body>
  17.     <!-- NOTICE: You can use the _analytics.html partial to include production code specific code & trackers -->
  18.     
  19.     <main>
  20.         <!-- Section -->
  21.         <section class="vh-lg-100 mt-5 mt-lg-0 bg-soft d-flex align-items-center">
  22.             <div class="container">
  23.                 
  24.                 <div class="row justify-content-center form-bg-image" >
  25.                     <div class="col-12 d-flex align-items-center justify-content-center">
  26.                         <div class="bg-white shadow border-0 rounded border-light p-4 p-lg-5 w-100 fmxw-500">
  27.                            
  28.                             <div class="text-center text-md-center mb-4 mt-md-0">
  29.                                 <h1 class="mb-0 h3">CHANGER SITE :</h1>
  30.                             </div>
  31.                             <form method="post" class="mt-4">
  32.                                 <!-- Form -->
  33.                                 <div class="form-group mb-4">
  34.                                     <label for="email">Choix Site : </label>
  35.                                     <div class="input-group">
  36.                                        
  37.                                         <select class="select nature_contrat nature_contrat" name="nature_contrat" id="site"   required >
  38.                                             <option value="" selected>Selectionnez Site :</option>
  39.                                             {% for dossier in dossiers %}
  40.                                                 <option value="{{dossier.id}}">{{dossier.abreviation}} - {{dossier.designation}}</option>
  41.                                             {% endfor %}
  42.                                         </select> 
  43.                                     </div>  
  44.                                 </div>
  45.                                 <!-- End of Form -->
  46.                            
  47.                                 <div class="d-grid">
  48.                                     <button type="button" id="sitechoisir" class="btn btn-gray-800">Choisir</button>
  49.                                 </div>
  50.                                 
  51.                             </form>
  52.                             
  53.                         </div>
  54.                     </div>
  55.                 </div>
  56.             </div>
  57.         </section>
  58.     </main>
  59. </body>
  60. </html>