-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.6 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
40
41
42
43
44
45
46
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewpoint" content="width=device-width, initial-scale=1">
<title>登录</title>
<link rel="stylesheet" type="text/css" href="./css/normalize.css">
</head>
<body>
<div class="container">
<div class="intro">
<h1>Cloud Note</h1>
</div>
<div class="form-wrapper">
<form action="./login.php" method="post" onsubmit="return fnCheckBlank()">
<div class="login_box box">
<!-- 输入用户名 -->
<div class="input">
<input id="username" class="text" type="text" placeholder="请输入账号" onclick="fnClearError()" name="username">
</div>
<!-- 输入密码 -->
<div class="input">
<input id="password" class="text" type="password" placeholder="请输入密码" onclick="fnClearError()" name="password">
</div>
<!-- 用来显示错误信息 -->
<div id="error_box"></div>
<div>
<button type="submit">登录</button>
</div>
</div>
</form>
<br>
<!-- 创建新账户 -->
<div class="signup_box box">
<p>还没有账户?
<a href="./signup.html">注册一个</a>
</p>
</div>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>