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.
Create a Formbase endpoint
Create a new form in the Formbase dashboard and copy the endpoint URL.
Add an Embed component
Drop an Embed component into your Framer page and paste your HTML form.
Set the action URL
<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.
If you need custom success handling, submit with JavaScript and redirect manually after a successful response.