Intro_sound_trimmer/web/templates/index.html

15 lines
353 B
HTML
Raw Permalink Normal View History

2024-08-03 11:29:08 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MP3 Uploader</title>
</head>
<body>
<h1>Upload MP3 Files</h1>
<form action="/upload" method="post" enctype="multipart/form-data">
<input type="file" name="files" accept=".mp3" multiple>
<input type="submit" value="Upload">
</form>
</body>
</html>