Custom Spam Words

Custom Spam Words

Custom spam words let you block submissions that contain specific words.

You can specify a comma-separated list of (up to a 100) words in your form's settings, under custom spam words

Steps

  1. Goto formzillion.com (opens in a new tab)
  2. Create a form
  3. Go to form setting -> add the custom spam words

Example

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>FormZillion - Honeypot Spam Words Form Submit Example</title>
    <script src="https://cdn.tailwindcss.com"></script>
  </head>
 
  <body>
    <div class="mx-auto flex h-[100vh] max-w-7xl items-center justify-center">
      <div class="w-[600px] border border-gray-100 px-10 py-8 shadow">
        <div class="flex justify-center"></div>
        <h1 class="text-center text-3xl text-gray-700 font-bold ">Form Zillion</h1>
        <h4 class="text-center text-base text-gray-500 mt-4">Formzillion.com HTML Form with Google invisible reCaptcha(v3)</h4>
        <form id="form" class="my-6" action="http://localhost:3000/f/clgqj0fyo0003v56wz5vtkjcp" method="POST">
          <label class="mb-2 block text-sm font-bold text-gray-500" for="emailaddress"> Email Address </label>
          <input
            class="focus:shadow-outline mb-4 w-full appearance-none rounded border px-3 py-2 leading-tight text-gray-700 shadow focus:outline-none"
            id="emailaddress"
            type="emailaddress"
            placeholder="Enter Email Address"
            required
            name="emailaddress"
          />
          <label class="mb-2 block text-sm font-bold text-gray-500" for="emailaddress"> Full Name </label>
          <input
            class="focus:shadow-outline mb-4 w-full appearance-none rounded border px-3 py-2 leading-tight text-gray-700 shadow focus:outline-none"
            id="fullname"
            type="fullname"
            placeholder="Enter your Fullname"
            required
            name="fullname"
          />
          <input type="checkbox" name="Paste your custom honeypot here" style="display:none" tabindex="-1" autocomplete="off" />
          <div class="w-full">
            <button id="button" class="mt-4 w-full rounded bg-orange-500 px-4 py-2 font-bold text-white" type="submit">Submit</button>
          </div>
        </form>
      </div>
    </div>
  </body>
</html>