104 lines
2.7 KiB
HTML
104 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Статус сервера</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.status-container {
|
|
text-align: center;
|
|
background: white;
|
|
padding: 40px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
max-width: 400px;
|
|
}
|
|
|
|
.checkmark {
|
|
display: inline-block;
|
|
width: 60px;
|
|
height: 60px;
|
|
margin-bottom: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
.checkmark::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 20px;
|
|
top: 10px;
|
|
width: 25px;
|
|
height: 40px;
|
|
border: solid #4CAF50;
|
|
border-width: 0 10px 10px 0;
|
|
transform: rotate(45deg);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
font-size: 24px;
|
|
margin: 0 0 30px 0;
|
|
}
|
|
|
|
.links {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.link-button {
|
|
display: block;
|
|
padding: 12px 20px;
|
|
text-decoration: none;
|
|
color: #fff;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
border-radius: 8px;
|
|
font-weight: bold;
|
|
transition: all 0.3s ease;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.link-button:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
|
|
}
|
|
|
|
.link-button:active {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.link-stat {
|
|
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
|
|
}
|
|
|
|
.link-control {
|
|
background: linear-gradient(135deg, #6dd5fa 0%, #2980b9 100%);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="status-container">
|
|
<div class="checkmark"></div>
|
|
<h1>Сервер рестрима работает</h1>
|
|
<div class="links">
|
|
<a href="/stat" class="link-button link-stat">Статистика (/stat)</a>
|
|
<a href="/control" class="link-button link-control">Управление (/control)</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|