Skip to main content

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".
<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.