-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript" src='js/jquery-3.1.1.min.js'></script>
<script type="text/javascript" src='js/jquery.cookie.js'></script>
<style type="text/css">
* {
font-family: "Microsoft YaHei";
}
.tipTit {
font-size: 40px;
color: #f97217;
font-weight: bold;
text-align: center;
margin: 100px auto 0;
}
.choContent {
text-align: center;
}
</style>
</head>
<body>
<div class="choose">
<div class="choContent">
<p class="tipTit">请输入时代教育提供的密码!</p>
<input id="pass" type="password" name="password" style="margin-top: 80px;height: 30px;">
<a id="submit" href="javascript:void(0);" style="margin-left: 40px;margin-top: 80px;background-color: #3f9fec; padding: 10px 30px; border-radius: 20px;text-decoration: none;color: white">登陆</a>
</div>
</div>
</body>
<script type="text/javascript" src="js/index.js"></script>
</html>