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

Open in your IDE?
  1. {# <simple-input v-model="getInTouch.{{row.field_name}}"
  2.               :error-show="getInTouchErrors.{{row.field_name}}"
  3.               error-text="This field is required"
  4.               autocomplete="{{row.field_label}}"
  5.               type="email"
  6.               name="{{row.field_name}}"
  7.               {% if row.field_required %}required{% endif %}
  8.               placeholder="{{row.field_label}}"></simple-input> #}
  9. <div class="flex flex-col gap-4">
  10.     <label class="input-wrapp relative block">
  11.       <input type="email" name="{{row.field_name}}" {% if row.field_required %}required{% endif %} placeholder=" " autocomplete="email" class="block h-16 md:h-[72px] w-full text-base text-current font-medium px-8 input-border focus-visible:!border-current !outline-none duration-200"> 
  12.       <span class="block absolute pointer-events-none whitespace-nowrap opacity-50 top-1/2 left-8 -translate-y-1/2 duration-200 will-change-transform">{{row.field_label}}</span>
  13.     </label> <!---->
  14. </div>