Hire a web Developer and Designer to upgrade and boost your online presence with cutting edge Technologies

Sunday, October 16, 2022

recaptcha to download a file HTML

 test.html

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> 
<script>
$(document).ready(function(){
 $("form").submit(function(){
   var response = grecaptcha.getResponse();
      if(response.length == 0){
          alert('Please check the Captcha');
    return false;
 } 
 });
});
</script>
 <script type="text/javascript">
 var onloadCallback = function() {
 grecaptcha.render('html_element', {
 'sitekey' : 'UPDATE YOUR SITE KEY HERE'
 });
 };
 </script>
</head>
<body>
<h3>Click to download the file</h3>
   <form action="Nepredskazuuye%20Maa.mp3" method="post">
   <div id="html_element"></div>
       <br>
       <input type="submit" value="Download">
   </form> 
 <script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit"
 async defer>
 </script>
</body>
</html>

No comments:

Post a Comment