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

# File Uploads

> Accept file uploads in your forms easily.

## Zero-Configuration File Uploads

Add file upload functionality to your forms without any backend configuration. Files uploaded through your forms are securely stored and accessible via your FormDB dashboard.

### How to use

Simply add `enctype="multipart/form-data"` to your form tag and include an `input` with `type="file"`.

```html theme={null}
<form action="https://formdb.io/s/{Your Form ID}" method="POST" enctype="multipart/form-data">
  <!-- Other fields -->
  
  <label for="resume">Upload Resume</label>
  <input type="file" name="resume" accept=".pdf,.doc,.docx">
  
  <button type="submit">Submit Application</button>
</form>
```

### Supported File Types

FormDB supports all common file types including images, documents, and archives.
