Files
Trashbox/www/403.html

62 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trashbox - 403 Доступ запрещён</title>
<link rel="shortcut icon" href="/pic.svg" type="image/svg">
<style>
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #f8f9fa;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
color: #333;
}
.container {
text-align: center;
padding: 2rem;
background: white;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
max-width: 500px;
}
.code {
font-size: 6rem;
font-weight: 700;
background: linear-gradient(135deg, #dc3545, #b02a37);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin: 0;
}
.icon { font-size: 4rem; margin: 0.5rem 0; }
h1 { font-size: 1.5rem; margin: 0.5rem 0; }
p { color: #666; margin: 0.5rem 0 1.5rem; }
a {
display: inline-block;
padding: 0.75rem 2rem;
background: #667eea;
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 500;
transition: background 0.2s;
}
a:hover { background: #5a6fd6; }
</style>
</head>
<body>
<div class="container">
<div class="code">403</div>
<h1>Доступ запрещён</h1>
<p>Эй, дружок-пирожок, сюда нельзя</p>
<a href="/cgi-bin/index.cgi">Вернуться на главную</a>
</div>
</body>
</html>