Using Google's reCaptcha to protect download link from bots
问题 I've tried to insert a download link into a form with a reCaptcha (as per Google's instructions) but the submit button opens the link even if you don't pass the captcha challenge. The code is very simple: <head> <script src='https://www.google.com/recaptcha/api.js'></script> </head> <body> <form action="download link"> <input type="submit" value="download"> <div class="g-recaptcha" data-sitekey="xxx"></div> </form> </body> JSFiddle Does anyone know why this isn't working? Thanks! 回答1: I think