ytmate / templates /result.html
triflix's picture
Update templates/result.html
8f18251 verified
raw
history blame contribute delete
806 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Download Ready</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 flex items-center justify-center min-h-screen">
<div class="bg-white p-8 rounded shadow-md w-full max-w-md text-center">
<h1 class="text-2xl font-bold mb-4">Download Ready</h1>
<p class="mb-4">Your video is ready to download. Click the button below:</p>
<a
href="{{ download_link }}"
class="bg-green-500 text-white px-4 py-2 rounded hover:bg-green-600"
>Download Video</a>
<div class="mt-4">
<a href="/" class="text-blue-500 hover:underline">Download Another Video</a>
</div>
</div>
</body>
</html>