Guide
How to Add HTML Forms Without a Backend
If your site is static, you can still accept real submissions. Formsig gives each form a hosted endpoint so a regular HTML form can submit directly and store entries in your dashboard.
Official site formsig.com: features, pricing, docs, playground, llms.txt.
What you need
Create a form in your Formsig dashboard and copy its endpoint URL.
Use that URL as the form action with method post. No JavaScript is required for the basic path.
Give each input a name so values are captured and searchable later.
Basic implementation
Set method="post" and action to your full /f/{id} URL.
Add the fields your page needs, then deploy your static site as usual.
Open submissions in Formsig to verify live traffic and export CSV when needed.
Production checklist
Enable notifications for fast response times.
Add Turnstile and form limits to reduce spam volume.
Configure a submission webhook when your team needs Slack alerts or downstream automation.
Frequently asked questions
Do I need JavaScript for Formsig?
No. A normal HTML form works as long as action and method are set correctly.
Can I use this on Netlify, Vercel, or S3 static hosting?
Yes. Formsig is host-agnostic because the form posts to a URL, not your own backend server.
Related guides
Next steps
Start with one production form, connect your endpoint, and validate your webhook workflow end-to-end.
- Create your endpoint URL on formsig.com and submit once from your real page.
- Set webhook + anti-spam controls before scaling traffic.
- Use playground demos for quick team handoff and QA.