HTML Native Form

HTML Native Form

If you have a static website that requires a form backend, Formzillion can be an ideal choice for you as it seamlessly operates wherever HTML forms can be displayed.

Basic HTML Form

To start using Formzillion for your web forms, you'll require the following:

  • A Formzillion account
  • An HTML form
  • A distinctive form endpoint generated by Formzillion.

Note

  1. Set your HTML form's action attribute to your form's action URL.Your form's unique action URL looks something like this:
https://app.formzillion.com/f/your-form-id.
  1. Ensure all input, select and textarea elements inside your form have a name attribute, otherwise you will not receive the data filled in these fields.

  2. Verify that your form contains a button element with the type = "submit"

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 - Native Form Submit Example</title>
  </head>
  <body>
    <form action="https://app.formzillion.com/f/your-form-id" method="post">
      <label for="name">Name</label>
      <input type="text" id="name" name="name" placeholder="Name" required="" />
      <label for="email">Email</label>
      <input type="email" id="email" name="email" placeholder="Email" required="" />
      <label for="message">Message</label>
      <textarea id="message" name="message" placeholder="Message" required=""></textarea>
      <button type="submit">Send</button>
    </form>
  </body>
</html>

HTML Form with reCaptcha v2

HTML Form with reCaptcha v3