Initial commit

This commit is contained in:
2025-09-09 17:58:49 -04:00
commit 7beb81a367
1240 changed files with 192835 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Upload Video - MiniTube</title>
<script src="app.js" defer></script>
</head>
<body>
<h1>Upload Video</h1>
<form id="uploadForm" enctype="multipart/form-data">
<label>Video File (.mp4 or .webm)</label>
<input type="file" name="video" accept=".mp4,.webm" required>
<button type="submit">Upload</button>
</form>
<p><a href="index.html">Back to Home</a></p>
</body>
</html>