templates/login/connexion.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     {% include ('includes/head.html.twig') %}
  4.     <link href="https://cdn.rawgit.com/harvesthq/chosen/gh-pages/chosen.min.css" rel="stylesheet"/>
  5.     <body>
  6.         <!-- Page Loader
  7.                 ========================================================= -->
  8.         <div class="loader-container" id="page-loader">
  9.             <div class="loading-wrapper loading-wrapper-hide">
  10.                 <div class="loader-animation" id="loader-animation">
  11.                     <svg class="svg-loader" width="100" height="100">
  12.                         <circle cx="50" cy="50" r="25"/>
  13.                     </svg>
  14.                 </div>
  15.                 <!-- Edit With Your Name -->
  16.                 <div class="loader-name" id="loader-name">
  17.                     <img src="/img/loader-logo.png" alt="">
  18.                 </div>
  19.                 <!-- /Edit With Your Name -->
  20.                 <!-- Edit With Your Job -->
  21.                 <p class="loader-job" id="loader-job">June 4-8 2016 @ New York City</p>
  22.                 <!-- /Edit With Your Job -->
  23.             </div>
  24.         </div>
  25.         <!-- /End of Page loader
  26.                 ========================================================= -->
  27.         <!-- Header
  28.                 ================================================== -->
  29.         <style>
  30.             #header {
  31.                 background-color: #3e4651 !important;
  32.             }
  33.             .inscription,
  34.             .connexion {
  35.                 display: none
  36.             }
  37.             .prix {
  38.                 display: none
  39.             }
  40.             .prix .row .col-lg-3:hover {
  41.                 background: #2d8ea4;
  42.                 color: white;
  43.                 border: 0 !important;
  44.                 cursor: pointer
  45.             }
  46.             .prix .row .col-lg-3:hover h4 {
  47.                 color: white
  48.             }
  49.             .prix .row .col-lg-3:hover h1 {
  50.                 color: white
  51.             }
  52.         </style>
  53.         {% include ('includes/header.html.twig') %}
  54.         <!-- /Header
  55.                 ================================================== -->
  56.         <style>
  57.             type="text/css" .main-intro:before {
  58.                 content: '';
  59.                 display: block;
  60.                 width: 100%;
  61.                 height: 100%;
  62.                 background: none;
  63.                 position: absolute;
  64.                 top: 0;
  65.                 left: 0;
  66.                 opacity: 1;
  67.             }
  68.         </style>
  69.         <div class="page-wrapper" >
  70.     
  71.     <div id="body-content" style="background:white;background: url(../img/section-bg-right-bottom.png) no-repeat bottom right #fafafa;">
  72.         <div class="owl-carousel main-carousel" id="main-carousel" >
  73.             <!-- slide -->
  74.             <div class="main-intro" style="background-image: url('/astp-image/contact.png');" >
  75.                 <div class="container" style="height:500px">    
  76.                     <div class="intro-content-wrapper viewport">
  77.                         <!-- INTRO CONTENT -->
  78.                         <!-- Adjust the margin-top in style atribute according to content to keep always centered vertically-->
  79.                         <div class="intro-content intro-content-slide1">
  80.                             <!-- row -->
  81.                             <div class="row">
  82.                                 <!-- col -->
  83.                                 <div class="col-md-10 col-md-offset-1">
  84.                                     <!--<img src="img/globe.png" alt="">-->
  85.                                     <h2 class="intro-title1">Connexion</h2>
  86.                                     <!-- Buttons -->
  87.                                     <div class="ic-buttons">
  88.                                         
  89.                                     </div>
  90.                                     <!-- /Buttons -->
  91.                                 </div>
  92.                                 <!-- /col -->
  93.                             </div>
  94.                             <!-- /row -->                        
  95.                                                             
  96.                         </div>    
  97.                         <!-- /INTRO CONTENT -->                    
  98.                     </div>                            
  99.                 </div>
  100.             </div>
  101. </div>
  102.             <div id="body-content">
  103.                 <div class="" id="section-register" style="margin-top:7%;min-height:800px;background:white">
  104.                     
  105.                         <div class="row">
  106.                          <div class="col-lg-4">
  107.                          </div>
  108.                         <div class="col-lg-7">
  109.                                                         {{ form_start(form, {
  110.                                                 'attr': {
  111.                                                     'novalidate': 'novalidate',
  112.                                                     'class': 'col-lg-5' 
  113.                                                     }
  114.                                                 })
  115.                                             }}
  116.                                             {% if erreur|length > 0 %}
  117.                                             <div class="alert alert-danger" role="alert">
  118.   {{ erreur|raw }}
  119. </div>
  120. {% endif %}
  121.                                       <legend>Connexion</legend>
  122.                                         {{ form_row(form.email, { 'attr' : { 'class': 'form-control' } }) }}
  123.                                         {{ form_row(form.password, { 'attr' : { 'class': 'form-control' } }) }}
  124.                                         <br>
  125.                                         <button type="submit" class="btn btn-primary">Connexion</button>
  126.                                         {{ form_end(form) }}
  127.                         </div>
  128.                         </div>
  129.                     
  130.                 </div>
  131. {% include ('includes/footer.html.twig') %}
  132.     </body>
  133. </html>