Contact Form
Pro Only
reCAPTCHA v3 - Invisible protection with no user interaction required
🔒 Protected by reCAPTCHA v3
This form is protected by invisible reCAPTCHA v3. No checkboxes to click -
Google analyzes your interaction automatically and assigns a score!
How reCAPTCHA v3 Works
Unlike v2, reCAPTCHA v3 is invisible. It:
- Runs automatically when the form is submitted
- Analyzes user behavior and assigns a score (0.0 to 1.0)
- Higher scores indicate likely human interaction
- No checkboxes or image selection required
Configuration:
Set your minimum score threshold in the Static Forms dashboard. Recommended: 0.5
Implementation Code
Here's what you need to add:
<!-- 1. Load reCAPTCHA v3 in <head> -->
<script src="https://www.google.com/recaptcha/api.js?render=6LdjFQwsAAAAAEMEDcVJiZ-5NhnzLNR569P14I6R"></script>
<!-- 2. Add hidden field for token -->
<input type="hidden" name="recaptchaToken" id="recaptchaToken">
<!-- 3. Execute reCAPTCHA on form submit (see JavaScript below) -->