How to Implement Google ReCAPTCHA v2
A step-by-step process on how to implement Google ReCAPTCHA v2 on your instance
Steps in implementing Google reCAPTCHA v2:
- Create your google reCAPTCHA site key - Google Documentation
- Add the Google reCAPTCHA API in the head tag
- Go to Settings
- Go to Head Tags
- Create a custom head tag (Tag = Script, Attribute = src, Value = https://www.google.com/recaptcha/api.js)
- Save head tag
- In the Code, add the site key attribute in the HTML element where you want the Google reCAPTCHA to appear
-
<div class="g-recaptcha" data-sitekey="[mySiteKey]"></div>
-
Updated 4 days ago