# Third-party Integrations

{% hint style="info" %}
Introduced in **v2.1.9**.
{% endhint %}

Allows seamless integration with third-party services, bypassing Webflow’s default form submission handling (eg: submit passwords to MemberStack)

* **Memberstack**
* **Outseta**
* **HubSpot**
* **All others..**

## Setup

**Attribute**: `sf-override-webflow = true`&#x20;

**Where**: [form-container](https://deltaclan.gitbook.io/superform/essentials/form-container "mention")

#### How It Works

Superform intelligently detects if a form is loaded inside a Webflow page and handles the submission to Webflow's API. However, when integrating with third-party services that require control over the form submission, this attribute instructs Superform to bypass Webflow’s submission and allow the third-party service to handle it instead.

{% hint style="warning" %}
**Important Note**

Since Webflow controls success messages, using this override attribute means the success message functionality will not work. Ensure your third-party service handles the success message display appropriately.
{% endhint %}

**HTML Example**

<pre class="language-html" data-title="index.html" data-overflow="wrap"><code class="lang-html">&#x3C;!-- Form Container with Webflow Override -->
&#x3C;form sf="myForm" sf-override-webflow="true">
    &#x3C;!-- Step 1 -->
    &#x3C;div sf-step="step1">
        &#x3C;label for="email">Email:&#x3C;/label>
        &#x3C;input type="email" name="email" id="email" required>
        &#x3C;label for="password">Password:&#x3C;/label>
<strong>        &#x3C;input type="password" name"password" id="password" sf-        validation="must(1,1,1,1) required>
</strong>        &#x3C;button type="submit">Submit&#x3C;/button>
    &#x3C;/div>
&#x3C;/form>
</code></pre>

**Webflow Example**

<figure><img src="https://450000313-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDGLtnaQr6bP3qHCWvX0r%2Fuploads%2FDixUkLXl8tsAwD6cqsTa%2FCleanShot%202024-08-03%20at%2013.48.57%402x.png?alt=media&#x26;token=83731b12-a772-4175-99f4-cb7e7dce7587" alt=""><figcaption></figcaption></figure>
