I am trying to add Google reCAPTCHA v2 to my form but it is not displaying. I have the script
<script src="//www.google.com/recaptcha/api.js"></script>
<div class="g-reCAPTCHA" data-sitekey="A key (original key in here)"></div>
inside of the form before the submit button. I am also using bootstrap code.
I tested this on a seperate page called test.html and it loads but not on this page.
I get the error in the console: GET https://www.google.com/reCAPTCHA/api.js net::ERR_ABORTED 404
https://www.google.com/reCAPTCHA/api.jsdoesn't exist, buthttps://www.google.com/recaptcha/api.jsdoes. So I guess somehow your code is trying to access the version with the erroneous capital letters (the error message doesn't quite match what you've shown as being your code above. I would guess the error message is the accurate one). - ADyson