templates/formulaires/indexcongre.html.twig line 50

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. {% include ('includes/head.html.twig') %}
  4. <body>
  5. <!-- Page Loader
  6. ========================================================= -->
  7. <div class="loader-container" id="page-loader"> 
  8.   <div class="loading-wrapper loading-wrapper-hide">
  9.       <div class="loader-animation" id="loader-animation">
  10.           <svg class="svg-loader" width=100 height=100>
  11.           <circle cx=50 cy=50 r=25 />
  12.         </svg>
  13.       </div>    
  14.     <!-- Edit With Your Name -->
  15.     <div class="loader-name" id="loader-name">
  16.       <img src="img/loader-logo.png" alt="">
  17.     </div>
  18.     <!-- /Edit With Your Name -->
  19.     <!-- Edit With Your Job -->
  20.     <p class="loader-job" id="loader-job">June 4-8 2016 @ New York City</p>
  21.     <!-- /Edit With Your Job -->
  22.   </div>   
  23. </div>
  24. <!-- /End of Page loader
  25. ========================================================= -->
  26. <!-- Header
  27. ================================================== -->
  28. {% include ('includes/header.html.twig') %}
  29. <!-- /Header
  30. ================================================== -->
  31. <div class="page-wrapper" style="min-height:600px;">
  32.     
  33.     <div id="body-content" style="background-color:white">
  34.         
  35.         <div class="section-about" id="section-about" style="background-color:white">
  36.             <div class="container-fluid">
  37.                 <div class="row" style="margin-top:10%;background-color:white">
  38.                    
  39.                    <div class="container">
  40.                    <h2>Formulaire d'inscription (Prix: {{ prix|e }} TND ) </h2>
  41.                    <hr>
  42.                            {{ form_start(form, {
  43.                                                 'attr': {
  44.                                                     'novalidate': 'novalidate',
  45.                                                     'class': 'col-lg-5' 
  46.                                                     }
  47.                                                 })
  48.                                             }}
  49.                                             {% if erreur|length > 0 %}
  50.                                             <div class="alert alert-danger" role="alert">
  51.                                                 {{ erreur|raw }}
  52.                                                 </div>
  53.                                                 {% endif %}
  54.                                                   {% if message|length > 0 %}
  55.                                             <div class="alert alert-success" role="alert">
  56.                                                 {{ message|raw }}
  57.                                                 </div>
  58.                                                 {% endif %}
  59.                                         {{ form_row(form.nom, { 'attr' : { 'class': 'form-control' } }) }}
  60.                                         
  61.                                         {{ form_row(form.prenom, { 'attr' : { 'class': 'form-control' } }) }}
  62.                                          {{ form_row(form.email, { 'attr' : { 'class': 'form-control' } }) }}
  63.                                          {{ form_row(form.phone, { 'attr' : { 'class': 'form-control' } }) }}
  64.                                         {{ form_row(form.type, { 'attr' : { 'class': 'form-control' } }) }}
  65.                                         <br>
  66.                                         <button type="submit" class="btn btn-primary">Suivant</button>
  67.                                         {{ form_end(form) }}
  68.                    </div>
  69.                 </div>
  70.             </div>
  71.         </div>
  72.         <!-- /SECTION: Event Description
  73.         ================================================== -->
  74.         <!-- SECTION: Event Schedule
  75.         ================================================== -->
  76.     </div>
  77.     </div>    
  78. {% include ('includes/footer.html.twig') %}
  79. </body>
  80. </html>