> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Popup Widget

> Create a hosted popup signup form and install it with a script tag.

# Popup Widget

The Popup Widget lets you create a Brevo-style signup popup inside Sequenzy and
install it on any website with a hosted script.

## Quick Start

1. Open **Pages & Forms → Popups** in your Sequenzy dashboard.
2. Create a popup or open an existing one.
3. Pick a template, trigger, fields, lists, tags, and success message.
4. Copy the generated HTML snippet.
5. Paste it into your site template, Webflow Embed element, or Webflow custom
   code.

## Install Code

The generated snippet loads the popup's saved configuration and runtime from
the Sequenzy application domain:

```html theme={null}
<script
  async
  src="https://www.sequenzy.com/embed/popups/popup_123?v=capture-runtime-20260716-10"
></script>
```

Replace `popup_123` with the saved popup ID. The code panel in the popup
builder supplies the complete versioned snippet automatically.

## Triggers

You can open the popup after a delay, after the visitor scrolls, on exit intent,
or manually from your own button:

```html theme={null}
<button type="button" onclick="window.SequenzyPopups?.['popup_123']?.open()">
  Open signup
</button>
```

## Submissions

Saved popup submissions post to the saved popup endpoint:

```text theme={null}
POST https://api.sequenzy.com/api/v1/forms/popups/{popupId}
```

This means list targeting, tag assignment, custom fields, duplicate handling,
spam honeypot protection, and existing subscriber updates use the popup settings
stored in Sequenzy.

## Branding

Saved popups show a small **Powered by Sequenzy** link for free workspaces.
Paid workspaces are white-label. The hosted script checks the current workspace
plan when it loads, so upgrading removes the branding without requiring you to
replace the embed snippet.

## Webflow

In Webflow, paste the generated snippet into a page-level **Custom Code** area
or an **Embed** element. Publish the site before testing the popup.
