maotube/public/upload/index.html

40 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MaoTube</title>
<link rel="stylesheet" href="/style.css">
<script defer src="/header.js"></script>
<script defer src="/helpers.js"></script>
<script defer src="script.js"></script>
</head>
<body>
<h1>MaoTube</h1>
<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="description"><p>Description</p></label>
<textarea name="description" id="description"></textarea>
<label for="video"><p>Video</p></label>
<input type="file" name="video" id="video" required>
<br><br>
<input type="submit" id="submit" value="Upload">
<br><br>
<a href="/queue">View upload queue</a>
</form>
<noscript>
<div class="mao-error">
<p>javascript not enabled</p>
<p>bottom text</p>
</div>
</noscript>
<div id="mao-error" class="mao-error hidden">
<p id="mao-error-message"></p>
<p>bottom text</p>
</div>
</body>
</html>