Files
navidrome-uploader/templates/index.html
T
arian 088642e863
Build Debian Package / build (push) Successful in 7s
fix(frontend): missing type for stylesheet link in index.html
Signed-off-by: Arian Nasr <arian@2ari.ca>
2026-05-28 21:41:36 -04:00

28 lines
785 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" />
</head>
<body>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" type="text/css" />
<form action="/"
class="dropzone"
id="my-dropzone"
enctype="multipart/form-data"></form>
<script src="{{ url_for('static', filename='js/dropzone-min.js') }}"></script>
<script>
const dz = new Dropzone("#my-dropzone", {
url: "/",
parallelUploads: 4,
uploadMultiple: true,
acceptedFiles: "audio/*"
});
</script>
</body>
</html>