Skip to main content

Forms

Forms allow you to create custom web forms for lead capture, data collection, and meeting scheduling. Each form gets a unique public URL that can be shared or embedded on your website.

Screenshot: Forms list page

Form Types

TypeDescriptionUse Case
Standard FormCollects data and triggers CRM actionsLead capture, surveys, contact forms
Meeting BookingCalendar-integrated booking pageSales calls, demos, consultations

Creating a Form

  1. Navigate to Engagement → Forms
  2. Click New Form (or New Booking Page for meetings)
  3. You'll be taken to the Form Builder

Form Statuses

StatusDescription
DraftWork in progress — not publicly accessible
ActiveLive and accepting submissions
InactiveTemporarily paused — public link shows unavailable
ArchivedHidden from list but data retained

Managing Forms

From the forms list, you can:

  • Search forms by name
  • Filter by status (draft, active, inactive, archived)
  • Duplicate a form to create a copy
  • Preview the public form
  • Copy Link to share the public URL
  • Embed to get iframe/script/popup code
  • Delete forms you no longer need
tip

Each form shows its submission count so you can quickly see which forms are performing well.

Form Builder

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

Screenshot: Form builder with drag-and-drop fields, canvas, and properties panel

Left Panel — Field Palette

Add fields by clicking or dragging:

Field TypeDescription
TextSingle-line text input
EmailEmail with format validation
PhonePhone number input
NumberNumeric input
DateDate picker
TextareaMulti-line text
SelectDropdown with options
RadioSingle-choice radio buttons
CheckboxMulti-choice checkboxes
FileFile upload
HeadingSection heading (non-input)
ParagraphDescriptive text (non-input)
DividerVisual separator (non-input)

Center Panel — Canvas

Preview your form as visitors will see it. Click any field to select it and configure its properties.

Right Panel — Settings

Five configuration tabs:

Fields Tab

Configure the selected field:

  • Label — Display name
  • Field Name — Submission key (auto-generated from label)
  • Placeholder — Hint text inside the field
  • Required — Make the field mandatory
  • Width — Full width or half width (side-by-side layout)
  • Options — For select/radio/checkbox: add, edit, remove choices

Actions Tab

Configure what happens after form submission:

ActionDescription
Create LeadCreates a new lead in your CRM
Create ContactCreates a new contact
Create AccountCreates a new account
WebhookPOST form data to an external URL
Send EmailSend a confirmation email to the submitter

Each CRM action includes field mapping — connect your form fields to CRM fields (first name, email, company, etc.).

note

Actions execute in order. Later actions can reference entities created by earlier ones (e.g., link a contact to an account).

Settings Tab

  • Success Message — Shown after successful submission
  • Redirect URL — Redirect instead of showing success message
  • Allow Multiple Submissions — Let the same person submit again
  • Require CAPTCHA — Enable reCAPTCHA v3 protection
  • Notification Emails — Comma-separated emails to notify on new submissions

Landing Page Mode:

  • Enable to wrap your form in a full landing page
  • Hero Title & Subtitle — Main headline
  • Background Color — Hero section color
  • SEO Title & Description — For search engines
  • Content Sections — Add text, images, or call-to-action blocks

Branding Tab

  • Logo URL — Your company logo
  • Primary Color — Button and accent color
  • Background Color — Form background
  • Header Text — Text above the form
  • Footer Text — Text below the form

Meeting Tab (Booking Forms Only)

See Scheduling & Booking Pages for details.

Form Submissions

Click any form to view its submissions.

Summary View

Screenshot: Form submission analytics

  • Stats Cards — Total responses, last 7 days, last 30 days, action success rate
  • 30-Day Trend — Bar chart showing daily submission volume
  • Per-Field Breakdown:
    • Choice fields: donut charts with percentages
    • Number fields: average, min, max values
    • Text fields: sample of recent responses

Responses View

  • Filter by date range and action status (success/error)
  • Expand each response to see full form data
  • Action Results — See if CRM actions succeeded or failed
  • Retry failed webhook actions
  • Export CSV — Download all responses

Sharing & Embedding

Every active form has a public URL:

https://yourdomain.com/f/{tenant-slug}/{token}

Embedding Options

iFrame:

<iframe src="https://yourdomain.com/f/tenant/token"
width="100%" height="600" frameborder="0"></iframe>

JavaScript:

<div id="intellicon-form-{id}"></div>
<script>
(function() {
var iframe = document.createElement('iframe');
iframe.src = 'https://yourdomain.com/f/tenant/token';
iframe.style = 'width:100%;height:600px;border:none;';
document.getElementById('intellicon-form-{id}').appendChild(iframe);
})();
</script>

Popup Modal: A button that opens the form in an overlay modal.

warning

Forms must be in Active status to accept public submissions. Draft and inactive forms will show an error page.