20 lines
476 B
HTML
20 lines
476 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Upload Video - MiniTube</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<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>
|