Frosted glass card on gradient background with CSS-only star rating
Sample data — this is what the auto-generated dashboard looks like when you create this form with createDashboard: true.
Total Feedback
51
| category | rating | feedback | Submitted |
|---|---|---|---|
| Bug Report | 1 | Great experience overall | — |
| Feature Request | 2 | Could be improved | — |
| Improvement | 3 | Really enjoyed it | — |
| Other | 4 | Some issues with the process | — |
| Bug Report | 5 | Excellent service | — |
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":"feedback","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": "feedback",
"createDashboard": true
}'[
{
"name": "email",
"label": "Email",
"type": "email",
"required": true
},
{
"name": "category",
"label": "Category",
"type": "select",
"required": true,
"options": [
"Bug Report",
"Feature Request",
"Improvement",
"Other"
]
},
{
"name": "rating",
"label": "Rating",
"type": "select",
"required": true,
"options": [
"1",
"2",
"3",
"4",
"5"
]
},
{
"name": "feedback",
"label": "Your Feedback",
"type": "textarea",
"required": true
}
]