The simplest Formbase integration is a standard HTML form. This works anywhere you can write HTML: static sites, templates, server-rendered apps, and CMS embeds. When the browser submits the form, Formbase stores the data and redirects the user to a built-in success page. If you set a return URL in the dashboard, that page includes a button back to your site.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.
Create a form endpoint
Copy the endpoint from your Formbase dashboard. It looks like
https://formbase.dev/s/YOUR_FORM_ID.Add the endpoint to your form
name attribute of each field becomes a key in your submission data.File uploads with HTML
To upload files, add a file input and setenctype="multipart/form-data":
file or image in the submission data.
If you need a custom thank-you page, handle submission with JavaScript and redirect manually. See Redirects.