-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·39 lines (29 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>test html</title>
<meta charset="utf-8">
<link type="text/css" rel="stylesheet" href="./assets/css/index.css">
</head>
<body>
<div id="tab_content">
<form method="POST" action="/PHP/login.php">
<br>
<img src="images/logo.png" alt="logo" width="200" height="90">
<div class="input-group">
<img src="images/user-shape.png" alt="username" width="38px" height="38px">
<input type="text" name="username" placeholder="请输入用户名">
</div>
<div>
<img src="images/lock.png" alt="password" width="43px" height="44px">
<input type="password" name="password" placeholder="请输入密码">
</div>
<br>
<button id="login_button" onclick="login()">登 录</button>
</form>
<div>
<a id="register" href="register.html">点击注册</a>
</div>
</div>
</body>
</html>