forked from XiaoLinZeng/rep_zxl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
createAccount.html
48 lines (44 loc) · 1.51 KB
/
createAccount.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
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="createAccount.css">
</head>
<body>
<div id="container">
<span class="title">
Create Account
<p class="icon"><a>×</a></p>
</span>
<div id="mainBox">
<ul>
<li>Username<br>
<input type="text" id="username" required>
</li>
<li>Email Address<br>
<input type="text" id="email" required>
</li>
<li>Password<br>
<input type="password" id="password" required>
</li>
</ul>
<img id="eyeClose" src="https://img-blog.csdnimg.cn/20200825202258596.gif">
<img id="eyeOpen" src="https://img-blog.csdnimg.cn/20200825202355781.gif">
</div>
<div id="btn">
<button type="submit" class="btn">
<a id="submitBtn">Create an account</a>
</button>
</div>
<div id="turnToSignUp">
<div>
<a>Already registered?</a>
</div>
</div>
</div>
<script type="text/javascript" src="createAccount.js"></script>
</body>
</html>