Quick Start
Learn how to get started with FormSync in just a few minutes. Create your first form, connect it to your site, and start receiving submissions instantly.
Setup in 3 Steps
Setup your form in just 3 steps:
Now you can start receiving submissions instantly in your FormSync Dashboard.
Step 1: Create an Account
- Go to FormSync.app
- Sign up using your email
- Navigate to your Dashboard
Step 2: Create a New Form
- Click on Forms in sidebar
- Click Create a New Form
- Enter basic details like:
- Form Title (e.g., Contact Form)
- Form Description (optional)
- Form Origns (optional)
- Add your form fields like:
- Name (e.g., Name)
- Email (e.g., Email)
- Message (e.g., Message)
- Click Create New Form — and you'll get a unique endpoint URL like:
https://formsync.app/v1/s/YOUR_FORM_ID
This is your form’s submission endpoint.
Step 3: Connect Your Frontend Form
You can now use that endpoint directly in your form.
Here’s a simple HTML example:
html
<form action="https://formsync.app/v1/s/YOUR_FORM_ID" method="POST"><input type="text" name="name" placeholder="Your name" required /><input type="email" name="email" placeholder="Your email" required /><textarea name="message" placeholder="Your message" required></textarea><button type="submit">Send</button></form>
When someone submits this form, the data will automatically appear in your FormSync Dashboard.
Step 4: View Submissions
Go to your Dashboard → Forms → [Find Form] → View Submissions Here you can:
- View all received entries
Need Help?
If you face any issues or have feedback:
- Visit the FAQ
- Contact us at contact@sudhucodes.com
How is this guide?