-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1003 Bytes
/
index.html
File metadata and controls
30 lines (30 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>File Download</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="card">
<div class="card-content">
<div class="icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M7 10L12 15L17 10" stroke="white" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<h1>Your file is downloading</h1>
<!-- The script will update this to "Fetching download link…" and then "Redirecting…" -->
<p id="loader">Redirecting…</p>
<!-- The script will display any error here -->
<p id="status" style="color: red;"></p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>