forked from aakarsh604/Gearbest-Clone
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
50 lines (47 loc) · 1.97 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
<!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>Join free gearbest.com</title>
<link rel="stylesheet" href="./styles/signup.css">
<link rel="shortcut icon" href="https://img.ecommercedb.com/gearbest.com-75ioegxvb6cx.png" type="image/x-icon">
<script
src="https://kit.fontawesome.com/24c494a6b6.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Logo section -->
<div id="top-sec">
<img id="logo" src="https://uidesign.gbtcdn.com/GB/images/promotion/2019/a_evan/Gearbest/logo_gearbest.png?imbypass=true" alt="logo">
</div>
<!-- Signup section -->
<form class="reg-box">
<div class="hed">
<div>
<h3><a href="login.html">SIGN IN</a></h2>
</div>
<div>
<h3>REGISTER</h2>
</div>
</div>
<input id="mail" class="inp" type="mail" placeholder="Email" required>
<input id="pass1" class="inp" type="password" placeholder="Create Password" required>
<input id="pass2" class="inp" type="password" placeholder="Re-type Password" required>
<div class="preview"></div>
<input id="code" class="inp" type="text" placeholder="Enter the code">
<div id="chek">
<input id="check" type="checkbox">
<label for="check" id="terms" >I agree to Gearbest <a href="">Terms and Conditions </a> and <a href="">Privacy Policies.</a></label>
</div>
<p>Tip: To maximize online security, please do not reuse passwords or choose easy to guess ones on Gearbest.
</p>
<button id="register">Register</button>
<p>or connect via</p>
<div id="google"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQNwtv-SfCJADd7ibbG64VkJgYgGHf_68mojA&usqp=CAU" alt=""></div>
</form>
</body>
</html>
<script src="./scripts/signup.js"></script>