Forms

Form endpoints enable you to receive form submissions

Overview

Form endpoints are secure and randomly generated endpoints which will be used in your HTML or JavaScript forms to collect the form submissions.

Example

Assuming your form endpoint is https://nocodeform.io/s/615040b1adb26cf215e58c57, you can simply create an HTML form like this:

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

That's it! 🎉

Please follow the Create a new Form guide to create your first form endpoint.