Turnstile

Turnstile, Cloudflare's intelligent CAPTCHA alternative, is seamlessly integrated with Formzillion.

Getting started

  1. Go to Turnstile (opens in a new tab).
  2. Create a new site.
  3. Integrate the site key on your website instructions (opens in a new tab).
  4. Copy the secret key.
  5. In your form's settings, Enable Spam Protection, select Turnstile under Spam Protection..
  6. Paste the secret key into the Turnstile secret key field.

Your form is now protected by Turnstile.

If you wish to discontinue using Turnstile, simply disable your Spam Protection in setting.

Example

<html lang="en">
  <head>
    <title>FormZillion - Turnstile Form Submit Example</title>
    <script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
  </head>
  <body>
    <h1>Login</h1>
    <h4>Safely Access Your Online Account or System with Login</h4>
    <form id="form" action="https://app.formzillion.com/f/your-form-id" method="POST">
      <label for="username">User Name</label>
      <input id="username" type="text" placeholder="Enter User Name" required name="username" />
      <label for="password">Password</label>
      <input id="password" type="password" placeholder="Enter your password" required name="password" />
      <div class="cf-turnstile" data-sitekey="Your site key"></div>
      <button id="button" type="submit">Login</button>
    </form>
  </body>
</html>
ℹ️