-
Notifications
You must be signed in to change notification settings - Fork 6
/
login.html
44 lines (44 loc) · 1.79 KB
/
login.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Access-Control-Allow-Origin" content="*" />
<title>手把手撸码前端 javascript学习</title>
<link rel="stylesheet" href="css/normalize.css">
</head>
<body>
<div class="accounts-wrap">
<div class="accunts-from-wrap">
<form onsubmit="return loginFrom()">
<div class="form-item">
<label for="">邮箱:</label>
<div class="input-wrap">
<input type="text" value="" class="input" placeholder="请输入你的邮箱" id="email">
</div>
</div>
<div class="form-item">
<label for="">密码:</label>
<div class="input-wrap">
<input type="password" value="" class="input" placeholder="请输入你的密码" id="password">
</div>
</div>
<div class="form-item">
<label for="">验证码:</label>
<div class="input-wrap">
<a href="javascript: void(0);" class="code" onClick="getCode()" id="codeButton">获取验证码</a>
<input type="text" value="" class="input" placeholder="6位数的验证码" id="code">
</div>
</div>
<div class="form-item">
<input type="submit" class="input-submit">
</div>
</form>
</div>
<p>
<a href="register.html">注册</a>
</p>
</div>
<script src="http://www.web-jshtml.cn/curriculum/javascript/js/global.js"></script>
</body>
</html>