Skip to main content
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.
1

Create a form endpoint

Copy the endpoint from your Formbase dashboard. It looks like https://formbase.dev/s/YOUR_FORM_ID.
2

Add the endpoint to your form

The name attribute of each field becomes a key in your submission data.
3

Submit and verify

Submit the form and confirm the data appears in your Formbase dashboard.

File uploads with HTML

To upload files, add a file input and set enctype="multipart/form-data":
Formbase stores uploaded files as URLs under either file or image in the submission data.
If you need a custom thank-you page, handle submission with JavaScript and redirect manually. See Redirects.