Form Settings
Form-level settings control behavior that's not tied to any one field — the Submit button text, what happens after submission, how required fields are marked, and more. Open them from the Form Designer's SETTINGS tab (right panel when no field is selected).
Submit Button Text
The text on the Submit button at the bottom of the form. Defaults to Submit. Pick anything that fits your call to action.
Examples:
| Use Case | Suggested Text |
|---|---|
| Newsletter signup | Subscribe |
| Lead capture | Get the guide |
| Booking | Reserve my spot |
| Demo request | Request a demo |
| Order | Complete order |
The submit button is automatically styled with the form's button color (see Style & Design → Colors).
Success Message
What the visitor sees on the Thank You screen after a successful submission. Defaults to Thank you for your submission!.
Examples:
You're in! Check your email for next steps.Thanks — we'll be in touch within 24 hours.Order received. Your confirmation will arrive shortly.
In conversational forms, this is overridden by the per-screen Thank You title if you've configured one. It's also overridden by an ending screen's title if conditions match.
Redirect URL after submit
When set, the form redirects to this URL ~800ms after a successful submission. The success message renders briefly first, then the page navigates.
Examples:
https://yoursite.com/thank-youhttps://yoursite.com/download/guide.pdfhttps://calendly.com/yourteam/intro-call
Leave blank to stay on the success screen instead of redirecting.
The redirect uses window.location.href = redirectUrl so any URL is valid — same-origin or cross-origin.
The form-submission API returns the new lead's ID. If you need it on the redirect page (e.g. a personalized thank-you), set up the redirect destination to read the visitor's lead from localStorage (the form caches votel_lead_id automatically) or pass it through via URL params on the destination side.
Required Field Indicator
How required fields are visually marked.
| Mode | What It Shows |
|---|---|
| Asterisk (default) | A red * after the label |
| (required) text | The literal text (required) after the label |
| None | Nothing — required fields look the same as optional ones |
Each mode is a global form preference. Visitors still can't submit until required fields are filled regardless of which indicator you pick.
Show Progress Bar
Toggle. When on, a thin progress bar renders at the top of the form card.
| Form Type | Progress Calculation |
|---|---|
| Premium / Popup | (filled input fields) / (total input fields) × 100 — updates as the visitor fills the form |
| Conversational | current screen number / total screen count × 100 — updates as they advance |
The progress bar is colored to match your form's Button Color (see Style & Design → Colors).
Default Label Position
The fallback label layout for fields that don't have their own per-field Label Position set.
| Position | Behavior |
|---|---|
| Top (default) | Label above the input |
| Left | Label fixed-width column on the left, input column on the right |
| Hidden | Label visually hidden but accessible to screen readers |
Per-field Style → Label Position wins when set. This is just the default for unset fields. Useful for switching the entire form to a left-label layout in one click instead of changing each field individually.
Saving Settings
Settings save when you click the header Save button (same as field changes). They persist as part of the form's settings JSONB column on the backend.
Worked Example: Set Up a Newsletter Form
Goal: Configure a clean newsletter form that redirects to a thank-you page on success.
Steps:
- Open Form Designer → SETTINGS tab.
- Submit Button Text:
Subscribe - Success Message:
You're in! Check your email for next steps. - Redirect URL:
https://yoursite.com/welcome - Required Indicator: Asterisk
- Progress Bar: off (a 2-field form doesn't need it)
- Default Label Position: Top
- Save.
Visitors who fill in the form click Subscribe, see "You're in!" briefly, then land on https://yoursite.com/welcome.
Next Steps
- Style & Design — Colors, themes, fonts, button styles
- Publish & Embed — Hosted URL, embed snippets
- Submissions — Where the data goes after submit