Carrd is the fastest no-code landing page builder for indie founders. You can ship a one-pager in an afternoon with no coding required. But adding a waitlist to Carrd requires knowing one platform quirk: each custom HTML block renders inside its own iframe, which changes how you embed external scripts.

Get this right and you have a working waitlist with referral tracking in under five minutes.

Paste both the OperatorStack script tag and the widget div into the same Carrd HTML element. They must share the same iframe context. Carrd Pro Standard ($19/year) is required to use HTML embeds.

What You Need Before You Start

  • Carrd Pro Standard ($19/year). The free plan does not allow custom HTML embeds. Pro Standard is the minimum plan that unlocks the HTML/CSS/JS element type in the editor.
  • An OperatorStack account. Free to start. You need your project key (the pk_ value from your embed snippet).

Step-by-Step Setup

1

Create an OperatorStack project. Go to your OperatorStack dashboard and create a new project. Name it after your product and enter your Carrd site URL so CORS is configured correctly for your domain.

2

Copy your embed snippet. From the project settings page, copy your script tag. It looks like this:

<script src="https://operatorstack.dev/os.js" data-project="pk_abc123"></script>

Keep this handy. You will paste it in the next step.

3

Open your Carrd site in the editor. Log in to Carrd and click Edit on your site to open the visual editor.

4

Add an HTML element. Click the + button to add a new element. From the element type menu, select HTML/CSS/JS. Carrd opens a code input panel.

5

Paste both the script tag and the widget div. In the HTML input, enter this code -- replacing pk_abc123 with your actual project key:

<script src="https://operatorstack.dev/os.js" data-project="pk_abc123"></script>
<div data-os-widget="waitlist"></div>

Both lines go in the same element. This is the key Carrd-specific requirement.

Do not put the script tag and the widget div in separate Carrd HTML elements. Carrd sandboxes each HTML block inside its own iframe. A script in one iframe cannot find a div in a different iframe. Both must be in the same element.

6

Adjust the element height. In Carrd's editor, drag the bottom edge of your HTML element to set its height. The OperatorStack waitlist form fits comfortably at around 280-320px tall. If the form appears clipped, increase the height.

7

Save and publish. Click Save, then Publish in the Carrd editor. Your site goes live with the waitlist form. Visit your URL, submit a test email, and confirm the signup appears in your OperatorStack dashboard under Contacts.

What Your Visitors See

After someone submits the waitlist form, OperatorStack shows a confirmation message and displays their unique referral link. Share buttons for Twitter, LinkedIn, WhatsApp, and email appear automatically. When a referred visitor signs up through that link, the attribution is recorded and visible on your referral leaderboard.

The embed also collects cookie-free analytics in the background: total page views, referral sources (which sites send you traffic), and estimated unique visitors. No extra configuration, no cookie banner required.

When sharing your Carrd site on social media, add UTM parameters to your URL: https://yoursite.carrd.co?utm_source=twitter&utm_medium=social. OperatorStack tracks these automatically so you can see which channels drive the most signups in your analytics dashboard.

Alternative: Header Code Injection

If you are on Carrd Pro Plus, you can also add the script tag via Site Settings > Code Injection > Header instead of embedding it in an HTML element. This loads the script in the main page context rather than inside an iframe.

With this approach, add a separate HTML element to your page containing only:

<div data-os-widget="waitlist"></div>

The globally loaded script will find and render the widget. The single-element approach from Step 5 works on all paid Carrd plans, so use that unless you have a specific reason to separate the script from the widget.

Frequently Asked Questions

What Carrd plan do I need to add a waitlist?

Carrd Pro Standard ($19/year). The free plan does not allow HTML embeds. Pro Standard is the cheapest plan that unlocks the HTML/CSS/JS element type.

Why do I need both the script and div in the same Carrd element?

Carrd renders each custom HTML element inside its own iframe for sandboxing. The script and widget div need to share the same iframe context. If you split them into separate Carrd elements, the script cannot find the div.

Will the waitlist widget show referral links after signup?

Yes. After someone submits the form, OperatorStack displays their unique referral link with share buttons for Twitter, LinkedIn, WhatsApp, and email. Everything renders inside the same embed block.

Can I track page views on Carrd with OperatorStack too?

Yes. The same script that powers the waitlist widget also collects cookie-free analytics: page views, referral sources, and unique visitor counts. No consent banner needed.