Initial commit

This commit is contained in:
Carl Pearson
2024-09-06 10:47:41 -06:00
commit 1720727c9e
15 changed files with 721 additions and 0 deletions

18
templates/download.html Normal file
View File

@@ -0,0 +1,18 @@
<!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>