-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.html
More file actions
54 lines (51 loc) · 1.95 KB
/
Copy pathSignUp.html
File metadata and controls
54 lines (51 loc) · 1.95 KB
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
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./SignUp.css">
</head>
<body>
<div class="SignUp_background">
<div class="header">
<span class="iconfont icon_back"></span>
<div class="top_title">Sign Up</div>
<span class=" iconfont icon_help"></span>
</div>
<div class="headPhoto">
<span class="iconfont icon_plus"></span>
<div class="text">PHOTO</div>
</div>
<div class="Register">
<div class="firstname">
<label for="firstname">First Name</label>
<br>
<input type="text" id="firstname">
</div>
<div class="Lastname">
<label for="lastname">Last Name</label>
<br>
<input type="text" id="lastname">
</div>
<div class="Email">
<label for="email">Email Address</label>
<br>
<input type="text" id="email">
</div>
<div class="Password">
<label for="password">Password</label>
<br>
<input type="text" id="password">
<div class="show"><a href="https://www.bilibili.com/video/BV1xe4y1f7Ry/?spm_id_from=333.999.0.0&vd_source=30a69fd3d8c784d462896bbaaa1846d3" target="_blank">show</a></div>
</div>
</div>
<div class="Login">
<div class="Loginbar">
<button>Sign Up</button>
</div>
<div class="otherchoice">Allready a member? <a href="https://www.bilibili.com/video/BV1Eb411u7Fw/?spm_id_from=333.999.0.0&vd_source=30a69fd3d8c784d462896bbaaa1846d3" target="_blank">Sign In</a></div>
</div>
</div>
</body>
</html>