templates/pages/jobalert.html.twig line 1

Open in your IDE?
  1. {% if form.optionValues is defined %}
  2. {% form_theme form.optionValues 'form/collapsible_fieldsets.html.twig' %}
  3. {% endif %}
  4. <div data-component="JobAlert" class="is-container is-content-1200 is-content-margin-top-0">
  5.     <div class="row component--jobalert">
  6.         <div class="col-12">
  7.             <h1>{{ 'Create Job Alert'|trans }}</h1>
  8.         </div>
  9.         <div class="col-12">
  10.             {{ form_start(form, {'attr': {'data-component': 'Form'}}) }}
  11.             {{ form_widget(form) }}
  12.             {% if show_privacy_statement_text %}
  13.                 <div class="form-group">
  14.                     <label>{{ privacy_statement_text }}</label>
  15.                 </div>
  16.             {% endif %}
  17.             <div class="form-group">
  18.                 <button class="is-btn is-background-color-accent" type="submit">
  19.                     {{ 'Create Job Alert'|trans }}
  20.                 </button>
  21.             </div>
  22.             {{ form_end(form) }}
  23.         </div>
  24.     </div>
  25. </div>