Fyaz Mohammed
3
e7261d3
Raw
History Blame Contribute Delete
1.25 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta property="og:image" content="https://cdn.jsdelivr.net/gh/fyaz05/Resources@main/FileToLink/live.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Downloading: {{ file_name }}</title>
<meta http-equiv="refresh" content="0;url={{ src|safe }}">
<style>
body { font-family: Arial, sans-serif; text-align: center; padding: 40px; color: #333; margin: 0; }
.container { max-width: 600px; margin: auto; }
p { margin-bottom: 20px; font-size: 1em; }
a { color: #0066cc; text-decoration: none; font-weight: bold; }
a:hover { text-decoration: underline; }
.message { padding: 20px; border: 1px solid #ddd; border-radius: 5px; background-color: #f9f9f9; }
</style>
</head>
<body>
<div class="container">
<div class="message">
<p>Your download for <strong>{{ file_name }}</strong> should start automatically.</p>
<p>If it doesn't, please <a href="{{ src|safe }}" download="{{ file_name }}">click here to download</a>.</p>
</div>
</div>
</body>
</html>