-
Notifications
You must be signed in to change notification settings - Fork 4
/
judgement.html
88 lines (85 loc) · 2.21 KB
/
judgement.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<title> 陶片放逐 - LAOI </title>
<link rel="stylesheet" href="https://laoi-offical.github.io/css/style.css">
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
.footer {
padding: 20px;
text-align: center;
background: #ddd;
margin-top: 20px;
}
</style>
</head>
<body>
<ul>
<li><a class="active" href="/">主页</a></li>
<li><a href="/problem">题库</a></li>
<li><a class="active" href="/contest">比赛</a></li>
<li><a class="active" href="/chat">公聊</a></li>
<li><a class="active" href="/forum">论坛</a></li>
<li><a class="active" href="/about">关于</a></li>
<li><a class="active" href="/login">登录</a></li>
<li><a class="active" href="/sin">注册</a></li>
</ul>
<table border="1">
<tbody>
<tr>
<th>人员名称</th>
<th>IP地址</th>
<th>处理情况</th>
</tr>
<tr>
<td>ZYC_ETHAN</td>
<td>222.244.234.143</td>
<td>炸公聊区,永久撤销进入网站权限</td>
</tr>
<tr>
<td>ETHAN_ZYC</td>
<td>222.244.234.143</td>
<td>ZYC_ETHAN小号,同样永久撤销进入网站权限</td>
</tr>
<tr>
<td>mete01</td>
<td>222.244.232.165</td>
<td>炸公聊区,撤销进入网站权限1周</td>
</tr>
<tr>
<td>mete03</td>
<td>222.244.232.165</td>
<td>mete01小号,同样撤销进入网站权限1周</td>
</tr>
</tbody>
<colgroup>
<col style="width: 33.2222%;">
<col style="width: 33.3333%;">
<col style="width: 33.3333%;">
</colgroup>
</table>
<div class="footer">
<p>Copyright(c) 2022-2023 LAOI保留所有权利</p>
<a href="/judgement" style="text-decoration: none;color: #3498db">陶片放逐</a>
</div>
</body>
</html>