Flinthaus · Form Intake Template

Starter template

Working example. Fork this for any new intake form.
This page is a live, working form. Submitting it will create a real Notion entry tagged form_type: "template-test" + post to #flinthaus-forms.

Use it to verify the pipeline works AND as the starter for new forms. To customize: change the JS constants FORM_TYPE + SUBMITTER at the top of the script, then change the questions in the markup. Everything else (Worker URL, payload shape, fallback handling) stays as-is.
Quickstart for new forms (5 steps):
  1. Copy this entire HTML file
  2. Change FORM_TYPE in the JS (e.g., "client-feedback")
  3. Change SUBMITTER default if needed (or have JS detect it)
  4. Replace the questions in the markup with your own (radio / checkbox / textarea)
  5. Update Q_RADIO, Q_CHECK, NOTES dicts to match your input IDs

Then deploy with wrangler pages deploy <dir> after creating the project. Add the new form_type value to the Notion 'Form Intake' DB select options (Notion UI, ~5 sec).
Q1
Radio button question (single choice)
Pick one — radio buttons share a name attribute.
Q2
Checkbox question (multi-select)
Pick any number — checkboxes share a name attribute.
Q3
Free text question
Pure textarea. No options.

✓ Sent