Class_Of_Learners / engine.html
NeelAniGamer's picture
Fix: Replace all HTML with physical splash redirect pages
daa51a9
Raw
History Blame
1.59 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="0; url=https://advancedlogiclabs.dpdns.org/engine.html">
<link rel="canonical" href="https://advancedlogiclabs.dpdns.org/engine.html" />
<title>Redirecting to Advanced Logic Labs...</title>
<style>
body { background-color: #010409; color: #ffffff; font-family: -apple-system, sans-serif; display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100vh; margin: 0; text-align: center; padding: 20px; }
h1 { color: #38bdf8; margin-bottom: 10px; }
p { color: #8b949e; margin-bottom: 30px; font-size: 1.2rem; }
a.btn { display: inline-block; background-color: #38bdf8; color: #010409; text-decoration: none; padding: 15px 30px; border-radius: 8px; font-weight: bold; font-size: 1.1rem; transition: background 0.2s; }
a.btn:hover { background-color: #0ea5e9; }
</style>
</head>
<body>
<h1>We Have Moved! 🚀</h1>
<p>This page has officially migrated to our new custom domain.</p>
<a id="redirBtn" href="https://advancedlogiclabs.dpdns.org/engine.html" target="_top" class="btn">Click Here to Continue</a>
<script>
setTimeout(function() { try { window.top.location.href = "https://advancedlogiclabs.dpdns.org/engine.html" + window.location.search + window.location.hash; } catch(e) {} }, 2000);
document.getElementById('redirBtn').href = "https://advancedlogiclabs.dpdns.org/engine.html" + window.location.search + window.location.hash;
</script>
</body>
</html>