templates/default/captcha.html.twig line 1

Open in your IDE?
  1. <script src='https://www.google.com/recaptcha/api.js?hl=fr' async defer></script>
  2. <style>
  3.     #g-recaptcha-response {
  4.         display: block !important;
  5.         position: absolute;
  6.         margin: -78px 0 0 0 !important;
  7.         width: 302px !important;
  8.         height: 76px !important;
  9.         z-index: -999999;
  10.         opacity: 0;
  11.     }
  12.     .invalid, .invalid + div.chzn-container a {
  13.         border-color: red !important;
  14.     }
  15. </style>
  16. <div class="recaptcha-error">
  17. {% if costum_style is defined %}
  18.     <div class="g-recaptcha" style="transform:scale(0.90);-webkit-transform:scale(0.90);transform-origin:0 0;-webkit-transform-origin:0 0;" data-sitekey="{{ recaptcha_sitekey }}" data-callback="onSuccess"></div>
  19. {% else %}
  20.     <div class="g-recaptcha" data-sitekey="{{ recaptcha_sitekey }}" data-callback="onSuccess"></div>
  21. {% endif %}
  22.     <div class="recaptcha-error-message">S'il vous plaĆ®t, cochez la case.</div>
  23. </div>