Files
ytdlp-site/templates/download.html
Carl Pearson 1720727c9e Initial commit
2024-09-06 10:47:41 -06:00

18 lines
363 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Download Video</title>
</head>
<body>
<h1>Download Video</h1>
<form method="POST">
<input type="url" name="url" placeholder="Video URL" required>
<button type="submit">Download</button>
</form>
<a href="/videos">View Downloaded Videos</a>
<a href="/logout">Logout</a>
</body>
</html>