This package provides a form element for the CAPTCHA alternative Turnstile by Cloudflare and can be used on your Neos CMS site with Neos.Form & Neos.Form.Builder.
Turnstile is Cloudflare’s smart CAPTCHA alternative. It can be embedded into any website without sending traffic through Cloudflare and works without showing visitors a CAPTCHA.
Cloudflare Turnstile documentation: https://developers.cloudflare.com/turnstile/
composer require tms/cloudflare-turnstile
1.) Create a free Cloudflare account or log in to your existing one
2.) Go to Turnstile
3.) Select Add a site and fill out the form
4.) Copy the site key
and secret key
and add the following environment variables
# Configuration/Settings.yaml
Tms:
Cloudflare:
Turnstile:
siteKey: '%env:CLOUDFLARE_TURNSTILE_SITE_KEY%'
secretKey: '%env:CLOUDFLARE_TURNSTILE_SECRET_KEY%'
Note: In
Development
context the package automatically sets test keys that always pass
5.) Add the Turnstile form element to your form configuration or use the Turnstile content element in your node-based forms
prototype(Vendor.PackageName:MyForm) < prototype(Neos.Form.Builder:Form) {
firstPage.elements {
turnstile = Tms.Cloudflare.Turnstile:Turnstile.Definition
}
}
By default, the Turnstile API is called on form interaction. Set lazyload: false
to call the API on page load.
# Configuration/Settings.yaml
Tms:
Cloudflare:
Turnstile:
lazyload: true
Development sponsored by tms.development - Online Marketing and Neos CMS Agency