Forms
Use Forms to capture leads from your website directly into the CRM. Embed a form on any page, create the contact automatically, start a conversation in Conversations, and trigger automations for instant follow-up.

Why use Forms?
- Convert website visitors into contacts automatically
- Reduce manual data entry with mapped fields and defaults
- Trigger automations (auto-reply, nurture campaigns, routing)
- Improve data quality with reCAPTCHA and UTM capture
What’s included
- Form Builder with configurable fields and defaults
- Design controls for container, fonts, and button
- reCAPTCHA integration
- Embed code for easy installation on any site
How to Use Form Builder
Step 1: Navigate to CRM > Forms.

Add the key fields you’d like to capture. Keep forms short—conversion rates drop as fields increase.
There are a few different settings you can have on each form field:
For all field types:
- You can set a default value, which will be submitted when the user submits an empty field.
- You can mark the field as required, and the user can’t submit the form without filling in the required field.
- You can make the field hidden, so users won’t see the field and can’t edit it when they fill out the form.
- You can also populate the specific form field dynamically, which will take the query parameter from the URL to fill in the field.
- For example, if you have a form that’s put on this link: https://www.example.com/form?campaign=spring-promotion
- If you put “campaign” on this setting, it will pre-fill the form field with “spring-promotion” when the user submits the form.
For the string field: you can switch it to an open text field, drop-down, or radio button options.
Short forms convert better. Consider deferring lower-priority questions to a follow-up email or meeting.
Step 2: Customize the styling to match your website.
You may want to set the form width to 100%, and then manage the width using your page builder. In the "Design" tab, style the container, font, and button.

Advanced Styling with Custom CSS
For more advanced customization, you can add custom CSS to style your forms exactly how you want them to appear on your website.
- In the form builder, navigate to the Design tab
- Scroll down to the Custom CSS section
- Add your CSS rules to customize colors, fonts, spacing, and layout
- Preview changes in real-time to see how your form will appear
Example custom CSS:
/* Customize form background */
.form-container {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 10px;
padding: 20px;
}
/* Style input fields */
input[type="text"], input[type="email"] {
border: 2px solid #4CAF50;
border-radius: 5px;
padding: 10px;
}
/* Customize submit button */
.submit-button {
background-color: #4CAF50;
color: white;
border-radius: 25px;
padding: 12px 30px;
font-weight: bold;
}
Test your custom CSS on different devices to ensure your form looks great on desktop, tablet, and mobile.
Step 3: Set up reCAPTCHA in the form to prevent Spam.
In the form builder, under Settings, use the reCAPTCHA section. After generating the site key and secret key, setup completes automatically (this can take a few minutes).

Step 4: Copy the embed code for the form, and place it on your website landing page or contact page.
If using WordPress (e.g., Divi), add a “Code” block and paste the embed code.

Step 5: Test your form, to confirm that a contact is captured in the CRM.
Automate follow‑up from your form
You can create and manage automations directly from a form using the Automation tab.
- Go to CRM > Forms and open an existing form (or create a new one)
- Click the
Automationtab in the form editor - If no automation exists, choose a template like "Send follow‑up email when a form is submitted" or start from Blank
- Configure the suggested step (for example, select a campaign for the follow‑up email) and click Save
- Toggle the automation On using the switch in the top‑right
To build more complex workflows:
- Click
Advanced modeto open the full automation builder - Add Conditions and additional Actions as needed (for example, apply a tag, assign a task, send SMS)
Starting from a template is the fastest way to launch a reliable follow‑up. You can always switch to Advanced mode to add steps later.
The Automation tab shows all automations connected to the selected form.
See: Automations
Frequently Asked Questions (FAQs)
My form isn’t always capturing UTM fields, why might that be?
For the form to capture UTM, they must be still present in the browser address bar. If a user clicks away from your landing page, to visit a second page on your website, and you don’t have a UTM preservation tool active, the UTM can be lost and won’t be captured if they fill out a form. One tactic to prevent this is removing all links from your landing page, to ensure leads fill out the form on the landing page and nowhere else.
Can I trigger automations from a specific form?
Yes. Open your form and use the Automation tab to create or manage a workflow for that specific form. You can also build it from the Automations area by choosing the "When a form is submitted" trigger and adding steps like tagging, notifications, or follow‑ups.
Where do I find the automation tab?
Go to CRM > Forms, open a form, and click the Automation tab.
Can I use a template to set up a form automation?
Yes. If no automation exists yet, you'll see options to start from a template or from blank.
Can I add multiple steps to a form automation?
Yes. Click Advanced mode to open the full builder and add Conditions and Actions, just like any other automation.
How do I enable or disable a form automation?
Use the toggle at the top‑right of the Automation tab.
Can I delete a form automation from the tab?
Not yet. To delete, go to the main Automations page, open the automation, and delete it there.
How do I add custom CSS to style my forms?
In the form builder, go to the Design tab and scroll down to the Custom CSS section. You can add CSS rules to customize colors, fonts, spacing, and layout. Changes preview in real-time.
Can I use custom CSS to make my forms responsive?
Yes! You can add media queries and responsive CSS rules in the Custom CSS section to ensure your forms look great on all devices.
What CSS classes can I target for form styling?
You can target standard form elements like .form-container, input[type="text"], input[type="email"], .submit-button, and other standard HTML form elements. Use your browser's developer tools to inspect the form structure.