-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 934 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登录界面</title>
<link rel="stylesheet" href="css/login.css">
</head>
<body>
<h1>邮 件 信 息 发 布 系 统</h1>
<div class="container">
<h2 class="title">登 录</h2>
<div class="input-field">
<img src="./img/user.png" alt="">
<h3 class="username">admin</h3>
</div>
<div class="input-field">
<img src="./img/password.png" alt="">
<input placeholder="密码" name="password" type="password">
</div>
<span class="btn-submit" id="submit">
<input type="submit" value="登 录">
</span>
</div>
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
<script src="js/vendor/md5.min.js"></script>
<script src="js/config.js"></script>
<script src="js/manageSDK.js"></script>
<script src="js/login.js"></script>
</body>
</html>