-
Notifications
You must be signed in to change notification settings - Fork 2
/
linkSchool.html
75 lines (74 loc) · 1.45 KB
/
linkSchool.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>绑定教务</title>
</head>
<style type="text/css">
*{
margin: 0px;
padding: 0px;
width: 100%;
/*height: 100%;*/
}
body{
width: 100%;
height: 450px;
}
.title{
width: 60%;
text-align: center;
color: #E5E9F4;
margin:auto;
margin-top:40%;
font:30px/1.5;
}
form{
margin:auto;
width: 80%;
margin-top: 10%;
}
input{
width: 100%;
height: 35px;
border-radius: 5px;
border: 0px;
padding-left: 4px;
margin-top:15px;
}
.in{
background-color:#90A2B2;
}
footer{
width: 80%;
margin:auto;
color:#033467;
margin-top: 34%;
text-align: center;
}
</style>
<body style="background:-webkit-linear-gradient(top,#014E9E,#01448B,gray);">
<div class="title">
<p><span style="font-size:24px;">WELCOME TO</span>
<br>
海贝TV
</p>
</div>
<!-- 如果没绑定显示 -->
<form action="" method="POST">
<input class="in" type="text" name="stuNumber" placeholder="学号">
<input class="in" type="password" name="psd" placeholder="教务密码">
<input type="submit" value="绑定">
</form>
<!-- 如果以绑定 -->
<form action="" method="POST">
<input class="in" type="text" name="stuNumber" value="学号:16000000000000">
<input type="submit" value="解绑">
</form>
<footer>
Copy@海贝TV研发部 2017
</footer>
</body>
</html>