-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignUp.html
47 lines (43 loc) · 1.8 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
<!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>SignUp</title>
<link rel="stylesheet" href="./Styles/signup.css">
</head>
<body>
<div id="container">
<img src="https://www.shareasale.com/images/logo2016_1.jpg" alt="">
</div>
<div id="mid-section" style="background-image: url('https://img.gkbcdn.com/s3/bn/2203/signin-6239450f2b40c91b9c8a4526.jpg');">
<div id="loginpopup">
<form id="form">
<div id="create">
<h3>Create Your Account</h3>
<a href="Signin.html"><p class="none">Sign In</p></a>
</div>
<div id="createbottom">
<input id="name" type="text" placeholder="Nick Name">
<input id="email" type="text" placeholder="Email address">
<input id="pass" type="password" placeholder="Password">
</div>
<div id="createbottom2">
<input id="access" type="text" placeholder="Access Code">
<img src="./Images/captcha.PNG" alt="">
</div>
<div id="createbottom3">
<input type="checkbox">
<p>I agree to Geekbuying's <span class="privacy">Terms of Use</span> & <span class="privacy">Privacy Policy.</span> </p>
</div>
<button type="submit" id="createac">Create Account</button>
</form>
</div>
</div>
<div id="bottom">
<p>Copyright © 2012 - 2022 Geekbuying.com. All rights reserved. </p>
</div>
</body>
</html>
<script src="./Scripts/signup.js"></script>