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

# Framer

> Send Framer form submissions to Formbase.

Framer supports custom code and embeds, which makes Formbase easy to integrate. Use an HTML form inside an Embed component or a custom code component and point it at your Formbase endpoint.

<Steps>
  <Step title="Create a Formbase endpoint">
    Create a new form in the Formbase dashboard and copy the endpoint URL.
  </Step>

  <Step title="Add an Embed component">
    Drop an Embed component into your Framer page and paste your HTML form.
  </Step>

  <Step title="Set the action URL">
    ```html theme={null}
    <form action="https://formbase.dev/s/YOUR_FORM_ID" method="POST">
      <input name="name" placeholder="Name" required />
      <input name="email" type="email" placeholder="Email" required />
      <button type="submit">Send</button>
    </form>
    ```

    Publish the site and test a submission.
  </Step>
</Steps>

<Callout type="note">
  If you need custom success handling, submit with JavaScript and redirect manually after a successful response.
</Callout>
