Get the next one in your inbox.
One email when we publish something worth reading. No spam — appropriately enough, we'd know.
Framer's form component has no file upload option. Here's how to add a custom HTML embed with a file input and wire it to a FormBridge endpoint.

Get an instant summary, key takeaways, action items, and answers to your questions about this article.
Framer's Form component doesn't include a file upload field. Adding a Code Embed with a plain HTML form — a file input plus multipart/form-data encoding — posted to a FormBridge endpoint accepts uploads with no extra configuration.
If you need a resume, a brief, or a signed PDF attached to a submission, Framer's native Form component won't help — it doesn't expose a file upload field at all. The usual workaround people reach for is a separate file-sharing link pasted into a text field, which is clunky and easy to get wrong.
Instead, drop a Code Embed into your Framer page with a plain HTML form that includes a file input, and point it at a FormBridge endpoint with multipart/form-data encoding:
<form action="https://app.formbridge.ai/api/forms/fb_8h2k9p"
method="POST"
enctype="multipart/form-data">
<input name="full-name" placeholder="Full name" />
<input name="email" type="email" placeholder="Email" />
<input type="file" name="resume" accept=".pdf,.doc,.docx" />
<button type="submit">Submit application</button>
</form>
That's the entire setup on the FormBridge side — no separate file-upload configuration to turn on. The enctype attribute and the type="file" input are all the endpoint needs to accept the attachment alongside the rest of the fields.
Uploaded files are stored encrypted and show up as a secure link directly on the submission in your FormBridge inbox, next to the applicant's name and email. There's nothing to configure on a per-form basis — any file input just works.
Files do count against your plan's total file storage, visible live on the Usage page in your dashboard, so it's worth keeping an eye on that if you're running a high-volume application form rather than the occasional attachment.
Because the form lives in a Code Embed, you style it with plain CSS scoped to the embed, or reuse class names and colors from your Framer design if you're comfortable authoring matching styles by hand — Framer's own design panel won't reach inside the embed, so visual styling has to be written directly into the HTML/CSS you place there.
No. Any form with a file input and enctype="multipart/form-data" is accepted automatically — there is no separate file-upload toggle to enable.
They're stored encrypted and appear as a secure link on the submission inside your FormBridge inbox, alongside the rest of the fields submitted.
One email when we publish something worth reading. No spam — appropriately enough, we'd know.