Created
April 22, 2021 08:55
-
-
Save Rameshwar-ghodke/0a019cf559c09461863398185e8625e6 to your computer and use it in GitHub Desktop.
captcha code add inform using script , more details - https://developers.google.com/recaptcha/docs/display
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Bootstrap Example</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> | |
</head> | |
<body> | |
<html> | |
<head> | |
<title>reCAPTCHA demo: Explicit render for multiple widgets</title> | |
<script type="text/javascript"> | |
var verifyCallback = function(response) { | |
alert(response); | |
}; | |
var widgetId1; | |
var widgetId2; | |
var onloadCallback = function() { | |
// Renders the HTML element with id 'example1' as a reCAPTCHA widget. | |
// The id of the reCAPTCHA widget is assigned to 'widgetId1'. | |
widgetId1 = grecaptcha.render('example1', { | |
'sitekey' : 'your_site_key', | |
'theme' : 'light' | |
}); | |
widgetId2 = grecaptcha.render(document.getElementById('example2'), { | |
'sitekey' : 'your_site_key' | |
}); | |
grecaptcha.render('example3', { | |
'sitekey' : 'your_site_key', //6LfKURIUAAAAAO50vlwWZkyK_G2ywqE52NU7YO0S | |
'callback' : verifyCallback, | |
'theme' : 'dark' | |
}); | |
}; | |
</script> | |
</head> | |
<body> | |
<!-- The g-recaptcha-response string displays in an alert message upon submit. --> | |
<form action="javascript:alert(grecaptcha.getResponse(widgetId1));"> | |
<div id="example1"></div> | |
<br> | |
<input type="submit" value="getResponse"> | |
</form> | |
<br> | |
<!-- Resets reCAPTCHA widgetId2 upon submit. --> | |
<form action="javascript:grecaptcha.reset(widgetId2);"> | |
<div id="example2"></div> | |
<br> | |
<input type="submit" value="reset"> | |
</form> | |
<br> | |
<!-- POSTs back to the page's URL upon submit with a g-recaptcha-response POST parameter. --> | |
<form action="?" method="POST"> | |
<div id="example3"></div> | |
<br> | |
<input type="submit" value="Submit"> | |
</form> | |
<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit" | |
async defer> | |
</script> | |
</body> | |
</html> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment