90s-web terminal aesthetic with monospace fonts, dashed borders, and a hacker color palette
Sample data — this is what the auto-generated dashboard looks like when you create this form with createDashboard: true.
Total Subscribers
21
| name | interests | Submitted | |
|---|---|---|---|
| [email protected] | Alex Chen | Product Updates | — |
| [email protected] | Sam Rivera | Engineering | — |
| [email protected] | Jordan Lee | Design | — |
| [email protected] | Taylor Kim | Industry News | — |
| [email protected] | Casey Park | All Topics | — |
Download the HTML file and serve it anywhere. It already submits to Sutrena out of the box — or swap the endpoint for your own backend.
Get a hosted form with a live dashboard in seconds:
curl -s sutrena.com/api/trial -d '{"email":"[email protected]"}' | jq -r .key | xargs -I{} curl -s sutrena.com/api/forms -H "Authorization: Bearer {}" -d '{"templateId":"newsletter","createDashboard":true}'Deploy this template as a hosted form with one API call:
curl -X POST https://sutrena.com/api/trial
# → {"key":"st_trial_xxx"}
curl -X POST https://sutrena.com/api/forms \
-H "Authorization: Bearer st_trial_xxx" \
-H "Content-Type: application/json" \
-d '{
"templateId": "newsletter",
"createDashboard": true
}'[
{
"name": "email",
"label": "Email",
"type": "email",
"required": true
},
{
"name": "name",
"label": "Name",
"type": "text"
},
{
"name": "interests",
"label": "Interests",
"type": "select",
"options": [
"Product Updates",
"Engineering",
"Design",
"Industry News",
"All Topics"
]
}
]