WHAT IS RECAPTCHA?
reCAPTCHA protects your website from fraud and abuse without creating friction.
reCAPTCHA uses an advanced risk analysis engine and adaptive challenges to keep malicious software from engaging in abusive activities on your website. Meanwhile, legitimate users will be able to log in, make purchases, view pages, or create accounts and fake users will be blocked.
USAGES
Step 1: Get the key
https://www.google.com/recaptcha/admin/
Step 2: Import the library
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
Step 3: Insert the captcha widget
<div class="g-recaptcha" data-sitekey="yourKey"></div>
Step 4: Make it Required
window.onload = function() { var $recaptcha = document.querySelector('#g-recaptcha-response'); if ($recaptcha) { $recaptcha.setAttribute("required", "required"); } };
Step 5: Display Required response
#g-recaptcha-response { display: block !important; position: absolute; margin: -78px 0 0 0 !important; width: 302px !important; height: 76px !important; z-index: -999999; opacity: 0; }
That’s it now use your brain to get data and use it
Full Guideline is coming soon!