Create a new Form

Create your first form endpoint and connect to your form

New Form

Open the Create new Form page, type your Form name and click on Create Form to create your first endpoint.

INFO

You can always change your Form name and settings in the Form Settings page.

Each form endpoint is created with a random ID (24 character hex string), e.g: https://nocodeform.io/f/615040b1adb26cf215e58c57.

Once your Form endpoint is created, you can set up your form to receive submissions. Assuming your form endpoint is https://nocodeform.io/f/615040b1adb26cf215e58c57, you can simply create an HTML form like this:

<form action="https://nocodeform.io/f/615040b1adb26cf215e58c57" method="POST">
  <input type="text" name="name">
  <input type="email" name="email">
  <button type="submit">Send</button>
</form>

Find your Form

Open the Forms page to list all your (active or inactive) Forms.