Templates/Dark Mode Bug Report

Dark Mode Bug Report

Developer-friendly dark theme with monospace accents for bug reporting

darkdevelopermonospace
Live Form — try submittingView source →

Dashboard Preview

Sample data — this is what the auto-generated dashboard looks like when you create this form with createDashboard: true.

Total Reports

81

Recent Reports

severitytitleemailSubmitted
CriticalSample Bug Title 1[email protected]
HighSample Bug Title 2[email protected]
MediumSample Bug Title 3[email protected]
LowSample Bug Title 4[email protected]
CriticalSample Bug Title 5[email protected]

Use this template

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 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":"bug-report","createDashboard":true}'

For AI agents

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": "bug-report",
  "createDashboard": true
}'
Custom fields from this template
[
  {
    "name": "email",
    "label": "Reporter Email",
    "type": "email",
    "required": true
  },
  {
    "name": "severity",
    "label": "Severity",
    "type": "select",
    "required": true,
    "options": [
      "Critical",
      "High",
      "Medium",
      "Low"
    ]
  },
  {
    "name": "title",
    "label": "Bug Title",
    "type": "text",
    "required": true
  },
  {
    "name": "steps",
    "label": "Steps to Reproduce",
    "type": "textarea",
    "required": true
  },
  {
    "name": "expected",
    "label": "Expected Behavior",
    "type": "textarea",
    "required": true
  },
  {
    "name": "actual",
    "label": "Actual Behavior",
    "type": "textarea",
    "required": true
  }
]
Dark Mode Bug Report — Form Template — Sutrena | Sutrena