313e7e4f0d
Build Debian Package / build (push) Successful in 9s
Signed-off-by: Arian Nasr <arian@2ari.ca>
24 lines
761 B
HTML
24 lines
761 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Upload Music</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" type="text/css" />
|
|
<script src="{{ url_for('static', filename='js/dropzone-min.js') }}"></script>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/dropzone.css') }}" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<script>
|
|
Dropzone.options.myDropzone = {
|
|
parallelUploads: 4,
|
|
uploadMultiple: true,
|
|
acceptedFiles: 'audio/*'
|
|
};
|
|
</script>
|
|
<form action="/"
|
|
class="dropzone"
|
|
id="my-dropzone"></form>
|
|
</body>
|
|
</html>
|