Webflow does not support native implementation of Invisible reCAPTCHA, but standard reCAPTCHA v2 checkbox integration is available on Webflow-hosted forms. To use Invisible reCAPTCHA, you’ll need to use a custom code workaround.
To implement Invisible reCAPTCHA on Webflow, you must bypass Webflow’s default form handling and handle form submissions via custom code and a service like Zapier, Make, or a custom backend endpoint.
action
to the <form>
tag via Embed code.onsubmit="return false;"
or JavaScript.grecaptcha.ready()
method and grecaptcha.execute()
function (you must provide your site key).Webflow University on reCAPTCHA:
https://university.webflow.com/lesson/using-recaptcha
Google reCAPTCHA Docs (v2 Invisible):
https://developers.google.com/recaptcha/docs/invisible
Forum discussions and unofficial tutorials: Community users have shared workarounds on the Webflow Forum, especially for integrating custom reCAPTCHA with third-party email or database solutions.
Webflow does not natively support Invisible reCAPTCHA, only the v2 checkbox. To use Invisible reCAPTCHA, you must add custom code, handle form submissions externally, and verify the reCAPTCHA token on your server or backend service. Refer to Google’s official documentation and consider using third-party tools for full implementation.