Skip to content

Build and secure a form

A form trigger gives a workflow a hosted entry point. Build the fields, set the page behavior, and decide whether the link is public or restricted.

There are two ways to add a form trigger:

  1. Navigate to the Triggers page and click New Trigger

  2. Select Form as the trigger type

  3. Choose an existing workflow or click + to create a new one

  4. Optionally name the trigger and import a form definition JSON file

  5. Click Create Trigger — you’ll be taken directly to the form builder

New Trigger dialog on the Triggers page with Form selected as the trigger type, a target workflow picker, and an optional form definition import section
  1. Open a workflow in the builder

  2. In the Library sidebar under Triggers, click Form

  3. A form trigger node appears on the canvas — click it to configure

Workflow builder showing the Form trigger option in the Library sidebar and a Form node on the canvas

Once added, you should provide a unique form name. QuickFlo will generate a unique URL for the form using the name you provide. Click the trigger node to see the URL, edit the form, or open it in a new tab.

Edit Form Trigger dialog showing the form name, public URL, title, and field count
FieldDescription
NameHuman-readable identifier for the trigger (optional)
Form URLThe public URL where the form is hosted — share this with users
TitleThe form title shown at the top of the page
FieldsSummary of configured fields

Click Edit Form to open the form builder.

The form builder is a visual drag-and-drop editor with three panels:

Form builder with field palette on the left, form layout in the center, and live preview on the right

Fields palette (left) — drag field types onto the form:

CategoryField Types
Basic InputsText, Long Text, Number, Email, Phone, Password
SelectionDropdown, Multi-Select, Checkbox
SpecialFile Upload, Date

Form layout (center) — arrange fields, set labels, mark fields as required, and configure field IDs. The field ID is the key used to access the value in your workflow (e.g., a field with ID first_name is accessed as {{ initial.first_name }}).

Live preview (right) — see exactly what the form looks like to end users as you build it. The preview updates in real-time as you add and configure fields.

Click any field in the form layout to configure it:

  • Label — the display name shown to users
  • Field ID — the key used in template expressions (auto-generated from the label, or set manually)
  • Required — whether the field must be filled before submission
  • Placeholder — hint text shown inside the input
  • Default value — pre-filled value (optional)

For Dropdown and Multi-Select fields, you also define the list of options.

The form builder’s Options menu (vertical dots icon in the header) lets you export and import form definitions as JSON files:

  • Export Definition — Downloads a .json file containing the form’s schema, metadata, and auth configuration. Use this to back up a form, share it with a teammate, or duplicate it across workflows.
  • Import Definition — Upload a previously exported .json file to replace the current form’s fields and settings. You can also import a form definition during trigger creation from the Triggers page.

Click the settings gear icon in the form builder toolbar to open Form Settings.

Form Settings showing branding options, access control with credential authentication, bulk upload toggle, and error handling

Customize the look of your hosted form page:

FieldDescription
Logo URLURL of an image displayed at the top of the form
Page TitleCustom browser tab title (defaults to the form title)
Favicon URLCustom favicon for the hosted form page
LayoutContainer width preset — narrow, standard, wide, or full. Use narrow for short auth forms, wide or full for forms with many sections or wide tables.
  • Success message — shown to users after a successful submission (or use a Return step to control the response dynamically)
  • Error message — custom message shown when submission fails

Enable bulk upload mode to let users upload a CSV file to submit multiple entries at once. Each row in the CSV becomes a separate workflow execution.

Toggle Expose detailed error messages to control whether users see the actual error message from the workflow or a generic error. Keep this off in production to avoid leaking internal details.


By default, forms are public — anyone with the URL can submit them. To restrict access, you can require users to sign in with credentials before seeing the form.

People who can sign in are represented by Form Auth connections. Each connection stores one username/password credential.

  1. Navigate to Connections in the QuickFlo sidebar

  2. Click New Connection and select Form Auth

  3. Fill in the credentials:

    Form Auth connection dialog with username, password, and optional metadata fields
    FieldDescription
    UsernameThe user’s identifier (email, username, etc.)
    PasswordPassword for form access
    MetadataOptional key-value pairs passed to the workflow on submission (e.g., department, role, permissions)
  4. Click Save

Create one Form Auth connection for each person who should be able to access the form.

  1. Open the form builder and click the settings gear icon

  2. Under Access Control, change Authentication to Require credentials

  3. In Authorized Users, select the Form Auth connections that should have access

  4. Optionally add a Login Hint — a message displayed on the sign-in screen (e.g., “Use your company email and the password provided by your admin”)

  5. Close settings and save the workflow

Now when someone visits the form URL, they’ll see a login screen before the form loads. Only users with matching Form Auth credentials can access it.


For longer forms, group fields into sections that render as a tabbed interface. Each section is a labelled tab the user can flip between, with its own subset of fields.

Open the form trigger config and add sections to the form config. Each section defines the keys of the fields it contains (the fields must already exist in the form):

{
"sections": [
{
"key": "contact-info",
"label": "Contact Info",
"icon": "user",
"description": "How can we reach you?",
"fields": ["first_name", "last_name", "email", "phone"]
},
{
"key": "company",
"label": "Company",
"icon": "building",
"fields": ["company_name", "company_size", "industry"]
},
{
"key": "details",
"label": "Use Case",
"fields": ["use_case", "timeline"]
}
]
}
FieldDescription
keyStable identifier — exposed to the workflow as {{ initial.form.section }}
labelTab label shown to the user
iconOptional icon name displayed next to the tab label
descriptionOptional helper text shown above the section’s fields
fieldsArray of field names from the form to include in this section. Fields not assigned to any section render outside the tabs.

Inside the workflow, the section the user submitted from is available at {{ initial.form.section }}, which is useful for routing or analytics.