-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsignUp.html
42 lines (41 loc) · 1.74 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
<!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" type="image/ico" href="https://m.geekbuying.com/favicon.ico">
<link rel="stylesheet" href="credential/signup.css" />
</head>
<body>
<div id="logo"><img src="https://content1.geekbuying.com/V1.4/en/images/indexV7/Geekbuying.png" alt=""></div>
<div id="container">
<div id="signup">
<div id="top_head">
<h2 id="create">Create your account</h2>
<a href="signin.html"> <h2 id="signin">Sign In</h2></a>
</div>
<input id="name" type="text" placeholder="Nick name" />
<input id="email" type="email" placeholder="Email address" />
<input id="password" type="password" placeholder="Password" />
<div id="access">
<input id="access_code" type="text" placeholder="Access code" />
<img id="random" src="https://www.geekbuying.com/QA/QACode" alt="" />
</div>
<div id="checkbox">
<label id="login_check" >
<input type="checkbox" id="cb">
<span id="p">
I agree to Geekbuying's
<a href="https://www.geekbuying.com/help/about/terms_of_use" target="_blank" id="u" >Terms of Use</a> & <a href="https://www.geekbuying.com/help/about/privacy_policy" target="_blank" id="u">Privacy Policy</a>.
</span>
<em class="error_color"></em>
</label>
</div>
<div id="submit" onclick="submit()">Create account</div>
</div>
</div>
</body>
</html>
<script src="./credential/signup.js"></script>