maotube/public/upload/index.html

23 lines
675 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">
</head>
<body>
2024-01-19 02:59:53 +00:00
<h1>MaoTube</h1>
<form action="/api/upload-video" method="POST" enctype="multipart/form-data">
2024-01-19 02:44:55 +00:00
<label for="username"><p>Title</p></label>
2024-02-10 22:30:03 +00:00
<input type="text" name="title" autofocus>
2024-01-19 02:44:55 +00:00
<label for="password"><p>Video</p></label>
<input type="file" name="video">
<br>
<br>
<input type="submit" id="submit" value="Upload">
</form>
2024-01-19 02:59:53 +00:00
<script src="/header.js"></script>
2024-01-19 02:44:55 +00:00
</body>
</html>