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

Open in your IDE?
  1. {% block component_captcha_google_re_captcha_v3 %}
  2.     {% set googleReCaptchaV3Options = {
  3.         siteKey: config('core.basicInformation.activeCaptchasV2.googleReCaptchaV3.config.siteKey')
  4.     } %}
  5.     <div class="captcha-google-re-captcha-v3"
  6.          data-google-re-captcha-v3="true"
  7.          data-google-re-captcha-v3-options="{{ googleReCaptchaV3Options|json_encode }}">
  8.         <input
  9.             type="text"
  10.             class="d-none grecaptcha_v3-input"
  11.             name="{{ constant('Shopware\\Storefront\\Framework\\Captcha\\GoogleReCaptchaV3::CAPTCHA_REQUEST_PARAMETER') }}"
  12.             data-skip-report-validity="true"
  13.             required>
  14.         <div class="data-protection-information grecaptcha-protection-information">
  15.             {{ "captcha.googleReCaptcha.dataProtectionInformation"|trans|sw_sanitize }}
  16.         </div>
  17.     </div>
  18. {% endblock %}