summaryrefslogtreecommitdiff
path: root/static/redirect.html
diff options
context:
space:
mode:
authorLyssa2026-02-09 16:46:50 +0000
committerLyssa2026-02-09 16:46:50 +0000
commit0e82d47f233e6804a77d02304db0accbf9aed417 (patch)
treea9c326e9bf7a0fc5971989d4a78dcd2b17b8a054 /static/redirect.html
parent0909d4341a2c2bfd0b9d42b7fcadafd40b54f944 (diff)
downloadmassgrave.dev-dev.zip
Rename the drive .htmlHEADmaindev
Diffstat (limited to 'static/redirect.html')
-rw-r--r--static/redirect.html40
1 files changed, 0 insertions, 40 deletions
diff --git a/static/redirect.html b/static/redirect.html
deleted file mode 100644
index 133bbd9..0000000
--- a/static/redirect.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <meta charset="utf-8">
- <title>MASSGRAVE Drive 💀</title>
- <link rel="stylesheet" href="css/water.min.css">
- </head>
- <body>
- <h1>📂 MASSGRAVE Drive</h1>
- <p>Welcome to MASSGRAVE Drive! You can find your requested file below.</p>
-
- <h2 style="word-break:break-all" id="file-title">💾 Loading...</h2>
-
- <p>Please click <i>Download file</i> to download the requested file.</p>
-
- <form method="GET" action="" id="download-form">
- <button type="submit">Download file</button>
- </form>
-
- <footer>© <span id="year"></span> <a href="https://massgrave.dev">MASSGRAVE</a> 💀</footer>
-
- <script>
- document.getElementById('year').textContent = new Date().getFullYear();
-
- const hash = window.location.hash.substring(1);
- const filename = decodeURIComponent(hash);
-
- if (filename) {
- document.title = filename + ' | MASSGRAVE Drive';
- document.getElementById('file-title').textContent = '💾 ' + filename;
-
- const downloadUrl = 'https://archive.isdn.network/windows/' + encodeURIComponent(filename);
- document.getElementById('download-form').action = downloadUrl;
- } else {
- document.getElementById('file-title').textContent = '💾 No file specified';
- document.querySelector('button[type="submit"]').disabled = true;
- }
- </script>
- </body>
-</html> \ No newline at end of file