Skip to content

Webflow Integration

Create a bridge between your Webflow forms and Basin\'s database for a seamless submission experience.

Collecting submissions in Webflow on exported sites

If you're wanting to use the built-in Webflow form element on a site you've exported, you simply need to adjust your Webflow form settings to connect to Basin for submission handling.

There are 3 ways to integrate a webflow form with Basin:

  1. Basin JS: Javascript library for AJAX form submission, captchas, rendering alerts, and redirects (recommended)
  2. Basic integration

BasinJS

Basic integration

Copy/paste the Basin endpoint URL you want Webflow to use for submission handling. Then, log in to Webflow and access the form settings page. Paste the endpoint URL into the action field, and make sure that the method is set to POST.

Once you make these changes, you can publish/export your Webflow site code and your form will send all submission data to Basin.

Step 1: Include the Basin JS script

Paste the following code into your Webflow site's Pages -> Project Settings -> Before tag.

<script src="https://js.usebasin.com/v2.1.0.min.js" async></script>

Step 2: Update the form settings

  1. Go to the page with the form.
  2. Select the form you want to point to Basin.
  3. Click on the settings icon in the top right corner.
  4. Change the "Action" to the URL you copied from your Basin form settings.
  5. Change the "Method" to "POST".
  6. Under "Custom Attributes", click the "+" button to add a new attribute. Set the name to "data-basin-form", and the value to "true". This will tell the Basin JS script to handle this form submission.
  7. Save the form settings.
  8. Publish your site and test.

Additional Configuration Recommended

Please see theĀ Basin JS Docs for more configuration options and details.

Optional: Support for Webflow Collections

You can now leverage Webflow Collections by adding a placeholder to to your form action.

  1. Make sure to include the latest version of Basin JS (>= 2.1.0) (see Step 1)
  2. Add the data-basin-endpoint as a data attribute to your form, and give it the value of your collection. This can be the endpoint ID of the form, or the entire URL of the endpoint. Recommendation: keep it simple and use the endpoint ID.

Here is an example of the markup that would be generated:

<form action="https://usebasin.com/f/<some_default_form_endpoint_id>" method="POST" data-basin-endpoint="[your.collection.reference_containing_the_form_endpoint_id]">