templates/pages/blocks/form/email.html.twig line 1

Open in your IDE?
  1. {# <div class="input-container {{row.width}}">
  2.    <input autocomplete="false"
  3.       class="{{row.field_class}} input_form"
  4.       id="{{row.field_name}}"
  5.       name="{{row.field_name}}"
  6.       type="email" {% if row.field_required %}required{% endif %}>
  7.    <label class="label_input_form"
  8.       for="{{row.field_name}}">{{row.field_label}}</label>
  9. </div> #}
  10. <label class="input-block mb-40" data-validateable-block>
  11.    <span class="input-label">{{row.field_label}}</span>
  12.    <input class="input-field {{row.field_class}}" name="{{row.field_name}}" type="email" {% if row.field_required %}required{% endif %} data-validateable-input>
  13.    <div class="input-error">This field is required</div>
  14. </label>