mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 06:47:20 +08:00
59 lines
1.5 KiB
Go
59 lines
1.5 KiB
Go
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>耗子面板</title>
|
||
<style>
|
||
body {
|
||
background-color: #f9f9f9;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
.container {
|
||
max-width: 800px;
|
||
margin: 2em auto;
|
||
background-color: #ffffff;
|
||
padding: 20px;
|
||
border-radius: 12px;
|
||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||
}
|
||
h1 {
|
||
font-size: 2.5em;
|
||
margin-top: 0;
|
||
margin-bottom: 20px;
|
||
text-align: center;
|
||
color: #333;
|
||
border-bottom: 2px solid #ddd;
|
||
padding-bottom: 0.5em;
|
||
}
|
||
p {
|
||
color: #555;
|
||
line-height: 1.8;
|
||
text-align: center;
|
||
}
|
||
a {
|
||
text-decoration: none;
|
||
color: #007bff;
|
||
}
|
||
@media screen and (max-width: 768px) {
|
||
.container {
|
||
padding: 15px;
|
||
margin: 2em 15px;
|
||
}
|
||
h1 {
|
||
font-size: 1.8em;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<h1>耗子面板</h1>
|
||
<p>这是耗子面板的网站默认页面!</p>
|
||
<p>当您看到此页面,说明您的网站已创建成功。</p>
|
||
<p>由 <a target="_blank" href="https://panel.haozi.net">耗子面板</a> 强力驱动</p>
|
||
</div>
|
||
</body>
|
||
</html>
|