Why teams look past Netlify Forms
Netlify Forms is a good fit when your whole stack lives on Netlify. Friction shows up when you need Netlify forms on other hosts, or when you outgrow the default workflow. You still need somewhere for submissions to land without rewriting your site around one vendor.
Limitations of Netlify Forms
- Built around Netlify hosting and build time detection, not a portable “drop in anywhere” endpoint for every stack.
- Moving hosts often means rethinking form handling, not only DNS.
- Heavier workflows may need extra glue or higher tiers.
- Your forms story can stay coupled to the Netlify ecosystem.
Formgrid: same simplicity, any hosting
Formgrid is a Netlify Forms alternative where it counts: keep a plain HTML form, set method="POST", and point action at your endpoint. It works on any static site. No lock in to a single platform.
- Works everywhere your HTML can live: GitHub Pages, Vercel, Cloudflare, Netlify itself, or a small VPS.
- Form backend without Netlify as a hard requirement: bring your own host.
- Optional visual form builder and dashboard when you do not want to hand write markup.
- Spam controls, notifications, exports. Built for real projects, not only demos.
HTML form example
<form action="https://formgrid.dev/api/f/your-form-id" method="POST">
<input type="text" name="name" required />
<input type="email" name="email" required />
<button type="submit">Send</button>
</form>
Replace your-form-id with the ID from your Formgrid dashboard.
Formgrid vs Netlify Forms (at a glance)
High level view for form backend without Netlify and Netlify forms alternative for static sites searches. Verify current docs on both sides before you migrate.
| Topic | Netlify Forms | Formgrid |
|---|---|---|
| Works outside Netlify hosting | Not the primary model | Yes—endpoint works from any origin |
| Static site friendly | Yes (on Netlify) | Yes (any host) |
| Setup | Easy on Netlify | Easy—paste action URL |
| Drag and drop form builder | No | Yes (optional) |
| Vendor lock in for forms | Tied to Netlify’s model | Use Formgrid where you want; host HTML anywhere |
| Open source core | N/A | MIT licensed project |
Details change over time. Always compare current docs and pricing on both sides before you migrate.
Good fits
- Sites on GitHub Pages, Vercel, or Cloudflare that need reliable submissions without switching host only for forms.
- Teams that might change hosting later and want the form layer to move on its own.
- Contact pages, lead capture, waitlists, and light surveys in static HTML.
- Developers who want Netlify style simplicity with an endpoint that does not assume Netlify.