vendor/shopware/storefront/Resources/views/storefront/component/captcha/honeypot.html.twig line 1

Open in your IDE?
  1. {% block component_captcha_honeypot %}
  2.     <div class="{{ constant('Shopware\\Storefront\\Framework\\Captcha\\HoneypotCaptcha::CAPTCHA_REQUEST_PARAMETER') }}">
  3.         {% block component_captcha_honeypot_input %}
  4.             <input type="text"
  5.                    name="{{ constant('Shopware\\Storefront\\Framework\\Captcha\\HoneypotCaptcha::CAPTCHA_REQUEST_PARAMETER') }}"
  6.                    class="d-none"
  7.                    value=""
  8.                    tabindex="-1"
  9.                    autocapitalize="off"
  10.                    spellcheck="false"
  11.                    autocorrect="off"
  12.                    autocomplete="off"
  13.             >
  14.         {% endblock %}
  15.     </div>
  16. {% endblock %}