maotube/public/upload/index.html

25 lines
839 B
HTML
Raw Normal View History

2024-01-19 02:44:55 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MaoTube</title>
<link rel="stylesheet" href="/style.css">
2024-02-12 23:07:28 +00:00
<script defer src="/header.js"></script>
<script defer src="script.js"></script>
2024-01-19 02:44:55 +00:00
</head>
<body>
2024-01-19 02:59:53 +00:00
<h1>MaoTube</h1>
2024-02-12 23:07:28 +00:00
<form id="upload-form" method="POST" action="/api/upload-video" enctype="multipart/form-data">
<label for="title"><p>Title</p></label>
<input type="text" name="title" id="title" required autofocus>
<label for="video"><p>Video</p></label>
<input type="file" name="video" id="video" required>
<br><br>
2024-01-19 02:44:55 +00:00
<input type="submit" id="submit" value="Upload">
2024-02-12 23:07:28 +00:00
<br><br>
<a href="/queue">View upload queue</a>
2024-01-19 02:44:55 +00:00
</form>
</body>
</html>