Webflow integration

Webflow's native form element does not let you change its action to an external URL โ€” it always submits to Webflow's own infrastructure. To use Farvane you need an Embed element with plain HTML instead.

  1. 1. Drag an "Embed" (custom code) element into the Designer, where the form should go.
  2. 2. Paste the following code inside the Embed โ€” it's a regular HTML form, not Webflow's Form component.
  3. 3. Publish the site. Since it's not Webflow's native form, it won't appear in Webflow's form submissions โ€” responses arrive by email via Farvane instead.
<form action="https://api.farvane.com/api/v1/submit" method="POST">
  <input type="hidden" name="access_key" value="YOUR_ACCESS_KEY_HERE">
  <input type="checkbox" name="botcheck" style="display: none" tabindex="-1" autocomplete="off">

  <label>Nombre
    <input type="text" name="name" required>
  </label>
  <label>Email
    <input type="email" name="email" required>
  </label>
  <label>Mensaje
    <textarea name="message" required></textarea>
  </label>

  <button type="submit">Enviar</button>
</form>

The botcheck field is the anti-spam honeypot and access_key identifies your form, same as every other guide.

Next step: create your account and copy your real access_key.