Works with any backend npm install Zero dependencies

Support Ticket Upload

Support ticket form with file attachments for screenshots, logs, or other supporting documents.

Submit a Support Ticket

Drag & drop files here
var uploader = new MultipleUpload(el, {
 uploadUrl: '/api/upload',
 maxFiles: 5,
 maxFileSize: 10 * 1024 * 1024 // 10 MB
});

submitBtn.addEventListener('click', function() {
 uploader.startUpload();
 // Submit form after uploads complete
});