Schemaless form backend for static sites. Drop in a form, get a dashboard. No server code, no database to manage, no schema migrations.
fyra addons create formbuilder --app=your-appfyra push — submissions land in the dashboard
A schemaless form backend for static sites. Any <input>, <textarea>,
or <select> with a name attribute becomes a column in your submissions
table — no schema to define, no migrations to run. Add or rename fields any time; old submissions keep
their original shape, new ones pick up the new fields automatically.
Provisioned through the Fyra CLI and tied to your app. The dashboard authenticates via a signed token from Fyra's SSO flow — no separate login. Origin protection ensures only your registered domains can submit, and submissions are stored in a hosted database you don't have to operate.
Three layers stacked so casual abuse moves on to easier targets. A hidden honeypot field catches bots that auto-fill every input. A time-on-page HMAC token rejects scripts that POST without loading the page first. Per-IP and per-form rate limits cap flood attempts. No CAPTCHA — the cost is paid by the attacker, not your real users.
name becomes a column. No schema, no migrations.
The script finds any <form> with a matching data-formbuilder attribute,
injects a hidden honeypot field, and intercepts submit to send the data as JSON. On success it swaps
the form for a configurable thank-you message.
Same snippet, fewer fields. The submissions table adapts automatically — every submitted field becomes its own column. Mix and match field types; the dashboard shows whatever shape comes in.