forked from PrintNow/ChaoxingSign
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·63 lines (57 loc) · 2.17 KB
/
index.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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>学习通自动签到</title>
<style>
h1 {
text-align: center;
}
p {
text-align: center;
}
footer {
background-color: white;
color: #939393;
text-align: center;
/* display: block; */
position: fixed;
bottom: 0px;
width: 100%;
height: 30px;
margin: 0;
padding: 0px 0;
/* float: left; */
}
footer a {
color: #939393;
}
</style>
</head>
<body>
<h1>功能选择</h1>
<hr>
<p>本项目基于<a href="https://github.com/PrintNow/ChaoxingSign">Github项目“超星学习通自动签到”</a>改造而成,已在<a href="https://github.com/BA7JCM/ChaoxingSign-1">自己从原作者fork过来的项目</a>中开源</p>
<p>请选择功能:
<a href="login.html"><input type="button" value="登录自动签到系统"></a>或
<a href="add.html"><input type="button" value="注册自动签到系统(即添加账号到自动签到列表)"></a>
</p>
<p>当前服务状态:正常运行</p>
<!-- 添加icp备案和公安网备案(可选),添加的时候自行取消相关行的注释并替换相关内容为自己的值 -->
<!-- <footer>
<div> -->
<!-- ICP备案号 -->
<!-- <a href="https://beian.miit.gov.cn/" target="_blank"> -->
<!-- 这里改成你的备案号 -->
<!-- </a> -->
<!-- 公安网备案号 -->
<!-- 在“=”后面写上你自己的公安网备案号中的数字,在“src=""”中写上人家给你的图片在你网站中的相对路径 -->
<!-- <a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode="><img src=""> -->
<!-- 这里写你自己的整个公安网备案号 -->
<!-- </a>
</div>
</footer> -->
</body>
</html>