cake_wallet/assets/webpages/captcha.html
2022-03-17 13:27:55 +01:00

23 lines
585 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>reCAPTCHA</title>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body>
<div style='height: 60px;'></div>
<form action="?" method="POST">
<div class="g-recaptcha"
data-sitekey="6LfkEn4eAAAAAGa0mv9Uo-Yo7kZGT-8w4jwEs-0x"
data-callback="captchaCallback"></div>
</form>
<script>
function captchaCallback(response){
//console.log(response);
if(typeof Captcha!=="undefined"){
Captcha.postMessage(response);
}
}
</script>
</body>
</html>