maotube/public/upload/index.html
2024-01-19 03:48:01 +01:00

33 lines
994 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MaoTube</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header>
<h1>MaoTube</h1>
<nav>
<a href="/"><b>Home</b></a> -
<a href="/search">Search</a> -
<a href="/register">Register</a> -
<a href="/login">Login</a> -
<a href="/upload">Upload</a>
</nav>
<br>
<br>
</header>
<form action="/api/upload_video" method="POST" enctype="multipart/form-data">
<label for="username"><p>Title</p></label>
<input type="text" name="title">
<label for="password"><p>Video</p></label>
<input type="file" name="video">
<br>
<br>
<input type="submit" id="submit" value="Upload">
</form>
</body>
</html>