Integrate Google reCAPTCHA v2 to enhance your form's security by verifying users are not bots.
Google reCAPTCHA v2 is a security measure that requires users to click an "I am not a robot" checkbox before submitting a form. This helps in distinguishing genuine users from automated bots.
https://www.google.com/recaptcha/api.js
to your form's HTML pageg-recaptcha
and data-sitekey
with the site key generated in step 1.Example HTML:
<html>
<head>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
</head>
<body>
<form action="YOUR_JAMFORM_ENDPOINT" method="post">
<!-- Other form elements -->
<div class="g-recaptcha" data-sitekey="YOUR_SITE_KEY"></div>
<button type="submit">Submit</button>
</form>
</body>
</html>
_Notes:
g-recaptcha-response
field will not show up in submission emails or webhook data.