Navigation

Forms

A Form is a publishable page at konduit.work/f/<slug> that captures structured input from anyone (no login required) and creates a task or DataTable row in your workspace on submission.

Common uses: bug report intake, support ticket creation, lead capture, customer onboarding, content requests.

published form on its public URL

Creating a form

+ → New Form in the sidebar. Configure:

Name Internal name
Slug Public URL slug — bug-reportkonduit.work/f/bug-report
Target Where submissions land — a list (creates tasks) or a DataTable (creates rows)
Fields Form inputs (each maps to a target field)
Settings Title, branding, success message, redirect URL

Fields

Drag form fields from the picker:

  • Text, textarea, email, phone, URL
  • Number, slider, currency
  • Dropdown (single), multi-select
  • Date, date range
  • Checkbox, radio
  • File upload (private storage)
  • Section divider, heading, description text

Each field maps to a target field — e.g., the form's "Severity" dropdown writes to the target task's "Severity" custom field.

Conditional rules

Show or hide fields based on other field values:

"Show 'Customer impact' field only when Severity = High"

Configured per-field in the form builder.

Publishing

Toggle the Published switch and the form is live. Unpublished forms return a 404 on the public URL.

The public URL is unguessable by default (random slug suffix), but you can set a vanity slug. Anyone with the link can submit.

Spam protection

Public forms run automated bot detection in the background. Bot submissions get rejected before they reach your workspace. No visible CAPTCHA — legitimate visitors don't see anything.

Submission management

Open a form → Submissions tab. Filter, search, export to CSV. Click any submission to see what fields were entered and the resulting task / row.

Embedding

Embed the form in your own site:

<iframe src="https://konduit.work/f/bug-report?embed=1"
        width="100%" height="600" frameborder="0"></iframe>

The ?embed=1 parameter hides Konduit's surrounding navigation and branding, showing just the form.

API access

Forms and submissions are read-only via the public API. Form management (create, edit, publish) is UI-only.

Next