forked from XiaoLinZeng/rep_zxl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignUpPage.html
44 lines (41 loc) · 1.49 KB
/
signUpPage.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">
<title>signUpPage</title>
<link rel="stylesheet" href="signUpPage.css">
</head>
<body>
<div class="container">
<div class="header">
<span>Log In
<p class="icon"><a>×</a></p>
</span>
</div>
<form action="">
<div class="info">
<span>Account Number(Username)
<input type="text" id="accountNumber" required>
</span>
<span>Password
<input type="password" id="password" required>
</span>
<img id="eyeClose" src="https://img-blog.csdnimg.cn/20200825202258596.gif">
<img id="eyeOpen" src="https://img-blog.csdnimg.cn/20200825202355781.gif">
</div>
</form>
<div id="logIn">
<button type="submit" id="logInBtn">
<a id="aBtn">Log in</a>
</button>
</div>
<div id="turnToCreateAccount">
<a>No Account?</a>
</div>
</div>
<script type="text/javascript" src="signUpPage.js"></script>
</body>
</html>