mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-10 04:44:43 +00:00
23 lines
585 B
HTML
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>
|