43 lines
764 B
HTML
43 lines
764 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>403 禁止访问</title>
|
|
<link rel="icon" href="data:;base64,=">
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
h1 {
|
|
color: #d9534f;
|
|
}
|
|
|
|
p {
|
|
color: #333;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>403 禁止访问</h1>
|
|
<p>抱歉,您没有权限访问此页面。</p>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |