25 lines
725 B
HTML
25 lines
725 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Download Video</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Download Video</h1>
|
|
<form method="POST">
|
|
<input type="url" name="url" placeholder="Video URL" required>
|
|
<input type="radio" id="audio-video" name="color" value="audio-video" checked>
|
|
<label for="audio-video">Audio/Video</label>
|
|
<input type="radio" id="audio-video" name="color" value="audio">
|
|
<label for="audio">Audio Only</label>
|
|
|
|
<button type="submit">Download</button>
|
|
</form>
|
|
<a href="/videos">View Downloaded Videos</a>
|
|
<a href="/logout">Logout</a>
|
|
</body>
|
|
|
|
</html> |