16 lines
481 B
HTML
16 lines
481 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>
|
|
<h1>Upload new File</h1>
|
|
<form method=post enctype=multipart/form-data>
|
|
<input type=file name=file multiple>
|
|
<input type=submit value=Upload>
|
|
</form>
|
|
</body>
|
|
</html> |