help please what’s this #168560
Replies: 3 comments
This comment was marked as off-topic.
This comment was marked as off-topic.
-
|
👍
|
Beta Was this translation helpful? Give feedback.
-
|
Hi @petypet, It loads the Google reCAPTCHA script and displays a full-screen CAPTCHA box. When you solve the CAPTCHA, it sends the token to the server via POST /captcha. If the server verifies it successfully, the page reloads. If not, or if something fails, it hides the CAPTCHA and shows a red error message: "Please note, you didn't pass captcha verification". The CSS ensures it looks centered and responsive, especially on mobile. If you're seeing this message on a website, it means: You didn’t pass the CAPTCHA, or The server didn’t accept your verification token. Try refreshing the page, make sure JavaScript is enabled, and check your network connection or browser console for more info. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Show & Tell
Body
<title>Captcha</title> <script src="https://www.google.com/recaptcha/enterprise.js" async defer></script> <style> html, body { padding: 0; margin: 0; }Please note, you didn't pass captcha verification
<script> function handleError() { document.querySelector('.g-recaptcha').style.display='none'; document.querySelector('h2').style.display='flex'; }Beta Was this translation helpful? Give feedback.
All reactions