Professional, trust-building order form with clean commercial styling
Sample data — this is what the auto-generated dashboard looks like when you create this form with createDashboard: true.
Total Orders
35
| name | item | quantity | size | special_requests | Submitted | |
|---|---|---|---|---|---|---|
| Alex Chen | [email protected] | Item A | 2 | Small | Great experience overall | — |
| Sam Rivera | [email protected] | Item B | 4 | Medium | Could be improved | — |
| Jordan Lee | [email protected] | Item C | 6 | Large | Really enjoyed it | — |
| Taylor Kim | [email protected] | Custom | 8 | Small | Some issues with the process | — |
| Casey Park | [email protected] | Item A | 10 | Medium | 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":"order","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": "order",
"createDashboard": true
}'[
{
"name": "name",
"label": "Name",
"type": "text",
"required": true
},
{
"name": "email",
"label": "Email",
"type": "email",
"required": true
},
{
"name": "item",
"label": "Item",
"type": "select",
"required": true,
"options": [
"Item A",
"Item B",
"Item C",
"Custom"
]
},
{
"name": "quantity",
"label": "Quantity",
"type": "number",
"required": true,
"min": 1,
"max": 10
},
{
"name": "size",
"label": "Size",
"type": "select",
"required": true,
"options": [
"Small",
"Medium",
"Large"
]
},
{
"name": "special_requests",
"label": "Special Requests",
"type": "textarea"
}
]