Webflow
Webflow’s built-in form handling routes submissions through Webflow, which caps them on lower plans and keeps your data on their side. Dropping a plain HTML form into an Embed element posts straight to Formstork instead, so you keep every submission and skip Webflow’s limits.
Add the form
In the Webflow Designer, drag an Embed (Code) element onto your page and paste:
<form action="https://api.formstork.com/submit" method="POST">
<input type="hidden" name="access_key" value="YOUR_ACCESS_KEY">
<label>Name <input type="text" name="name" required></label>
<label>Email <input type="email" name="email" required></label>
<label>Message <textarea name="message" required></textarea></label>
<!-- Honeypot: bots fill this, humans don't. Keep it hidden. -->
<input type="checkbox" name="botcheck" style="display:none" tabindex="-1" autocomplete="off">
<button type="submit">Send</button>
</form>
Because this is a raw embed and not a native Webflow form, the POST goes directly to Formstork and Webflow’s own form handling is bypassed entirely.
Step by step
- Grab your free access key from the Formstork dashboard and paste it over
YOUR_ACCESS_KEY. - Open the page in the Webflow Designer and drag an Embed element (Add panel, under Components) where the form should sit.
- Paste the snippet into the code editor and click Save & Close.
- Publish the site. Webflow only runs embeds on the published URL, not on the Designer canvas.
- Open the live page, submit a test message, and confirm it lands in your Formstork dashboard.
Notes
The hidden botcheck field is a honeypot: bots fill it, real visitors never see it, so those submissions get dropped. Free accounts include 250 submissions a month. To style the fields, give them Webflow classes or add CSS inside the same Embed element.