HTML Form
It’s super easy to set up a form. Here, we will create a simple contact form.
You will need a FabForm.io account to get started.
-
Log in to your FabForm account.
-
Click on + Create Form. Give the form any name you like. A new form endpoint will be created along with it’s Form ID (in the format xxxxxxx).
We will use the following simple HTML form to get started.
Things to do
- In the
<form>
tag set theaction
attribute to point to the `https://fabform.io/f/xxxxxxx’ endpoint. Make sure to replace the xxxxxxx placeholder with your newly created form id. - Double check the form
method
attribute is set topost
. - Add any additional form fields that you need.
- IMPORTANT When adding form fields. Make sure you have a name=” ” attribute. Give each field a unique name so to clearly identify it’s data.