Workflows/Minimal Contact

Minimal Contact

Clean, whitespace-heavy contact form with hairline borders and system fonts

minimalcleanmodern
Live Form — try submittingView source →

Use this theme

Use standalone

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.

Deploy with one command

Get a hosted form 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 '{"workflowId":"contact"}'

For AI agents

Deploy this 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 '{
  "workflowId": "contact"
}'
Custom fields from this theme
[
  {
    "name": "name",
    "label": "Name",
    "type": "text",
    "required": true
  },
  {
    "name": "email",
    "label": "Email",
    "type": "email",
    "required": true
  },
  {
    "name": "message",
    "label": "Message",
    "type": "textarea",
    "required": true
  }
]
Minimal Contact — Workflow Theme — Sutrena | Sutrena