25 lines
No EOL
799 B
HTML
25 lines
No EOL
799 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>LAAS</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
<meta name="darkreader-lock">
|
|
</head>
|
|
<body>
|
|
<h1>LAAS</h1>
|
|
<p>(Lofi As A Service)</p>
|
|
<p>Upload stuff or something</p>
|
|
<form method="post" action="/api/upload" enctype=multipart/form-data>
|
|
<input type="file" name="file"> <br> <br>
|
|
<input type="text" name="filename" placeholder="filename.opus"> <br>
|
|
<p>Select type:</p>
|
|
<label for="music">Music</label>
|
|
<input type="radio" name="type" value="music"> <br>
|
|
<label for="fx">FX</label>
|
|
<input type="radio" name="type" value="fx"> <br>
|
|
<button type="submit">Upload!!</button>
|
|
</form>
|
|
</body>
|
|
</html> |