forked from PrintNow/ChaoxingSign
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadd.html
executable file
·61 lines (56 loc) · 2 KB
/
add.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
<!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;
position: fixed;
bottom: 0px;
width: 100%;
height: 30px;
margin: 0;
padding: 0px 0;
}
footer a {
color: #939393;
} */
</style>
</head>
<body>
<h1>添加账号到自动签到列表</h1>
<hr>
<form action="add.php" method="post">
<p>给个备注:<input type="text" name="name"></p>
<p>学习通账号(手机号):<input type="tel" name="account"></p>
<p>学习通密码:<input type="password" name="password"></p>
<p>接收通知的邮箱:(选填,但建议填写)<input type="email" name="email"> </p>
<p><input type="submit" value="添加"></p>
</form>
<!-- 添加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>