templates/front/layouts/captchaWithoutForm.html.twig line 1

Open in your IDE?
  1. {% embed 'front/layouts/captcha_base.html.twig' with {
  2.     n1: n1,
  3.     n2: n2,
  4.     op: op,
  5.     val: val
  6. } %}
  7.     {% block captcha_fields %}
  8.         <input type="hidden" name="newsletter_captchaVal" value="{{ val }}">
  9.         <input
  10.             type="text"
  11.             name="newsletter_captchaUser"
  12.             id="newsletter_captchaUser"
  13.             placeholder="?"
  14.             class="form-control"
  15.             required="required"
  16.             aria-label="{{ 'form.security_message'|trans({}, 'front') }}"
  17.         >
  18.     {% endblock %}
  19. {% endembed %}