| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/client-portal-laravel/releases/20260626120707/public/ |
Upload File : |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#4f46e5">
<title>Offline - ScopeForged Client Portal</title>
<link rel="icon" href="/images/logos/favicon.svg" type="image/svg+xml">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
}
.container {
background: white;
border-radius: 1rem;
padding: 2.5rem;
max-width: 420px;
width: 100%;
text-align: center;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
background: #f3f4f6;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.icon svg {
width: 40px;
height: 40px;
color: #6b7280;
}
h1 {
font-size: 1.5rem;
font-weight: 700;
color: #111827;
margin-bottom: 0.75rem;
}
p {
color: #6b7280;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.retry-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
background: #4f46e5;
color: white;
font-weight: 600;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
border: none;
cursor: pointer;
font-size: 1rem;
transition: background-color 0.15s;
}
.retry-btn:hover {
background: #4338ca;
}
.retry-btn:active {
background: #3730a3;
}
.retry-btn svg {
width: 20px;
height: 20px;
}
.tips {
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid #e5e7eb;
}
.tips h2 {
font-size: 0.875rem;
font-weight: 600;
color: #374151;
margin-bottom: 0.75rem;
}
.tips ul {
list-style: none;
text-align: left;
}
.tips li {
font-size: 0.875rem;
color: #6b7280;
padding: 0.375rem 0;
padding-left: 1.25rem;
position: relative;
}
.tips li::before {
content: "";
position: absolute;
left: 0;
top: 0.75rem;
width: 6px;
height: 6px;
background: #d1d5db;
border-radius: 50%;
}
@media (prefers-color-scheme: dark) {
body {
background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}
.container {
background: #1f2937;
}
.icon {
background: #374151;
}
.icon svg {
color: #9ca3af;
}
h1 {
color: #f9fafb;
}
p {
color: #9ca3af;
}
.tips {
border-top-color: #374151;
}
.tips h2 {
color: #e5e7eb;
}
.tips li {
color: #9ca3af;
}
.tips li::before {
background: #4b5563;
}
}
</style>
</head>
<body>
<div class="container">
<div class="icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126zM12 15.75h.007v.008H12v-.008z" />
</svg>
</div>
<h1>You're Offline</h1>
<p>It looks like you've lost your internet connection. Some features may not be available until you're back online.</p>
<button class="retry-btn" onclick="window.location.reload()">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0013.803-3.7M4.031 9.865a8.25 8.25 0 0113.803-3.7l3.181 3.182m0-4.991v4.99" />
</svg>
Try Again
</button>
<div class="tips">
<h2>While you're offline, you can:</h2>
<ul>
<li>View previously loaded pages from cache</li>
<li>Queue status updates for when you're back online</li>
<li>Review any saved finding details</li>
</ul>
</div>
</div>
<script>
// Auto-retry when connection is restored
window.addEventListener('online', function() {
window.location.reload();
});
</script>
</body>
</html>