templates/simulPanneaux/new.html.twig line 1

Open in your IDE?
  1. {% extends 'layout.html.twig' %}
  2. {% block content %}
  3.     <div class="container">
  4.         <div class="title">
  5.             Simulation Panneaux Solaires
  6.         </div>
  7.     </div>
  8.     <div class="register-photo">
  9.         <div class="form-container">
  10.             <div class="image-holder" style="background-image: url('{{ asset('assets/img/chantiers/p-s1.jpg') }}')"></div>
  11.                 {{ form_start(form) }}
  12.                 {{ form_errors(form) }}
  13.                 <h2 class="text-center"><strong>Commencez</strong> votre simulation !</h2>
  14.                 {{ form_row(form.habitant, { 'label': 'Vous ĂȘtes :' }) }}
  15.                 {{ form_row(form.random_simul_id) }}
  16.                 <div class="form-group">{{ form_row(form.submit, { 'label': 'Suivant' }) }}</div>
  17.         </div>
  18.     </div>
  19. {% endblock %}
  20. {% block footer %}
  21.     {{ parent() }}
  22.     <script src="{{ asset('assets/js/cookie.js') }}"></script>
  23. {% endblock %}