nezha/cmd/dashboard/controller/waf/waf.html

46 lines
981 B
HTML
Raw Normal View History

2024-11-22 10:57:25 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blocked</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 90vh;
font-weight: bolder;
font-family: 'Courier New', Courier, monospace;
}
main {
text-align: center;
}
.emoji {
font-size: 200px;
}
p.secondary {
font-size: 12px;
color: #888;
}
2024-11-22 21:21:01 -05:00
@media (prefers-color-scheme: dark) {
body {
background-color: #111;
color: #007C41
}
}
2024-11-22 10:57:25 -05:00
</style>
</head>
<body>
<main>
<div class="emoji">🤡</div>
<h1>Blocked</h1>
<p>{error}</p>
<p class="secondary">nezha WAF</p>
</main>
</body>
</html>