48 lines
1.0 KiB
HTML
48 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>Banned</title>
|
|
<style>
|
|
body {
|
|
font-family: Roboto, sans-serif;
|
|
background-color: #f8f9fa;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
background-color: #fff;
|
|
padding: 30px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, .1)
|
|
}
|
|
|
|
h1 {
|
|
color: #ff152c
|
|
}
|
|
|
|
p {
|
|
font-size: 18px;
|
|
color: #6c757d;
|
|
margin-bottom: 20px
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>You have been banned!</h1>
|
|
<p>Ban Reason: <b>[BAN_REASON]</b></p>
|
|
<p>Ban Expiry: <b>[BAN_EXPIRY]</b></p>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |