73 lines
1.6 KiB
HTML
73 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Session Disconnected</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<style>
|
|
:root {
|
|
--bg-color: #f8f9fa;
|
|
--card-bg: #ffffff;
|
|
--accent-color: #d9534f;
|
|
--accent-dark: #c9302c;
|
|
--text-color: #333;
|
|
--font-family: 'Segoe UI', Tahoma, sans-serif;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
background-color: var(--bg-color);
|
|
color: var(--text-color);
|
|
font-family: var(--font-family);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
}
|
|
.card {
|
|
background: var(--card-bg);
|
|
padding: 2rem;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
|
|
max-width: 400px;
|
|
width: 90%;
|
|
text-align: center;
|
|
}
|
|
.icon {
|
|
font-size: 3rem;
|
|
color: var(--accent-color);
|
|
margin-bottom: 1rem;
|
|
}
|
|
h1 {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
p {
|
|
font-size: 1rem;
|
|
margin-bottom: 1.5rem;
|
|
color: #555;
|
|
}
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 0.6rem 1.2rem;
|
|
background-color: var(--accent-color);
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 6px;
|
|
font-weight: 500;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
.btn:hover {
|
|
background-color: var(--accent-dark);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<div class="icon">⚠️</div>
|
|
<h1>Session Disconnected</h1>
|
|
<p>Your remote session has ended due to inactivity or disconnection.</p>
|
|
<a class="btn" href="/">Return to Dashboard</a>
|
|
</div>
|
|
</body>
|
|
</html>
|