HTML Form Integration
FormSync works seamlessly with plain HTML forms—no JavaScript or backend setup required.
Create an HTML Form
To connect your form with FormSync:
- Set the
actionto your unique FormSync endpoint. - Use the
POSTmethod. - Add the
nameattribute to each input so FormSync can collect the data. - Use
requiredattributes if you want to enforce validation in the browser.
Example:
html1<form2 action="https://api.formsync.app/v1/s/<your-form-id>"3 method="POST"4>5 <input type="text" name="name" placeholder="Name" required />6 <input type="email" name="email" placeholder="Email" required />7 <button type="submit">8 Submit9 </button>10</form>
FormSync accepts any standard HTML form as long as the
actionandmethodare correctly configured.
Redirect After Submission (Optional)
If you want users to be redirected to a thank-you page after submission, you can add:
FormSync will automatically redirect users to the URL specified in the value attribute.
html1<input2 type="hidden"3 name="_redirect"4 value="https://yourwebsite.com/thank-you"5/>
Note: If you don't specify a redirect URL, FormSync will redirect users to the default Thank You Page.
That’s It!
Once your form is live:
- Form submissions will appear in your FormSync dashboard.
- No backend, JavaScript or server-side code is required.
- You can integrate the same way with any static site, portfolio or landing page.
How is this guide?