Created
May 26, 2019 14:37
-
-
Save mehmetcakmaz/b71876334156b29b902761be29a4e1d7 to your computer and use it in GitHub Desktop.
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
@section Scripts{ | |
<script type="text/javascript"> | |
grecaptcha.ready(function () { | |
grecaptcha.execute('reCAPTCHA_site_key', { action: 'about' }) | |
.then(function (token) { | |
$.getJSON("/Home/RecaptchaV3Vverify?token=" + token, | |
function (data) { console.log(data); }); | |
}); | |
}); | |
</script> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment