templates/Default/_engine_form.html.twig line 1

Open in your IDE?
  1. {# form + map #}
  2. <section class="main {{ class | default() }}">
  3.     <div class="search">
  4.         {% if h1 is defined and h2 is defined %}
  5.             <h1>{{ h1 }}</h1>
  6.             <h2>{{ h2 }}</h2>
  7.         {% endif %}
  8.         <div class="search-form">
  9.             {#
  10.                 This is a "fake" search form, html below could be removed.
  11.                 Used to avoid blank some ms before the js is loaded.
  12.                 After replaced by the js SearchFormTpl.html
  13.             #}
  14.             <div class="item i1">
  15.                 <select class="location from"
  16.                         name="stopFrom"
  17.                         data-placeholder="{{'homepage.search.origin' | trans}}">
  18.                     {% if depStop is defined %}
  19.                         <option value="{{depStop.id}}" selected="selected">{{depStop.name}}</option>
  20.                     {% endif %}
  21.                 </select>
  22.             </div>
  23.             <div class="i5 invert-route">
  24.                 <i class="icon-transfer"></i>
  25.             </div>
  26.             <div class="item i2">
  27.                 <select class="location to"
  28.                         name="stopTo"
  29.                         data-placeholder="{{'homepage.search.destination' | trans}}">
  30.                     {% if arrStop is defined %}
  31.                         <option value="{{arrStop.id}}" selected="selected">{{arrStop.name}}</option>
  32.                     {% endif %}
  33.                 </select>
  34.             </div>
  35.             <div class="item i3">
  36.                 <input type="text" name="dateFrom" placeholder="{{'homepage.search.departDate' | trans}}" readonly/>
  37.             </div>
  38.             <div class="item i4">
  39.                 <input type="text" placeholder="{{'homepage.search.returnDate' | trans}}" name="dateTo" readonly/>
  40.             </div>
  41.             <button id="search" class="primary"><span class="icon-search"></span> {{'homepage.search.submit' | trans}}</button>
  42.         </div>
  43.     </div>
  44. </section>