-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsignup.html
63 lines (63 loc) · 2.09 KB
/
signup.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!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" />
<title>Sign in or register</title>
<link
rel="shortcut icon"
href="https://avatars.githubusercontent.com/u/34937151?s=280&v=4"
type="image/x-icon"
/>
<link rel="stylesheet" href="./css/signup.css" />
</head>
<body>
<div id="header">
<div id="logoImg">
<a href="#">
<img
src="https://content1.geekbuying.com/V1.4/en/images/index_images/new_geekbuy.png?v=20197"
alt="geekbuying-logo-image"
/>
</a>
</div>
</div>
<div id="signBox">
<div id="bgImg">
<div id="loginBox">
<form action="" id="signup">
<div id="heading">
<p>Create your account</p>
<p>Sign in</p>
</div>
<div id="signupData">
<input type="text" id="name" placeholder="Nick name" required/>
<p class="afterClick"></p>
<input type="email" id="email" placeholder="Email address" required/>
<p class="afterClick"></p>
<input type="text" id="password" placeholder="Password" required/>
<p class="afterClick"></p>
<div id="code">
<input type="text" id="inputCode" placeholder="Access code" required/>
<div id="capcha">
<img src="./Images/dummycapcha.jpg" alt="" />
</div>
</div>
<p class="afterClick"></p>
<div id="tAndC">
<input type="checkbox" />
<p>
I agree to GeekBuying's <a href="#">Terms of Use</a> &
<a href="#">Privacy Policy.</a>
</p>
</div>
<input type="submit" id="submit" value="Create account" />
</div>
</form>
</div>
</div>
</div>
</body>
</html>
<script src="./script/signup.js"></script>