File Uploads
Uploads are Easy with Basin
Last updated
Uploads are Easy with Basin
Last updated
Basin also supports File Uploads. This is easily added to your Webflow forms by placing an HTML Embed with a file input element, e.g.;
If you just want a specific type of image, the accept param can be added to restrict file types.
You specify the unique file-type specifiers of the files you want to allow, and browsers will generally do a good job of restricting the file types that can be uploaded based on that.
Generally you can specify;
Valid case-insensitive file extensions such as .pdf
Valid MIME type strings, e.g. image/jpeg
File-type category specifiers-
audio/*
means any audio file
video/*
means any audio file
image/*
means any audio file
Simply add multiple
, and brackets []
after the name.
https://usebasin.com/docs/features/file-uploads
https://usebasin-recaptcha.webflow.io/ajaxified
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file
Hack add enctype=multipart/mime to FORM; does not appear to be needed ( with AJAX forms enabled ).