forked from aakarsh604/Gearbest-Clone
-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
45 lines (42 loc) · 1.55 KB
/
login.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
<!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 | Gearbest.com</title>
<link rel="stylesheet" href="./styles/login.css">
<link rel="shortcut icon" href="https://img.ecommercedb.com/gearbest.com-75ioegxvb6cx.png" type="image/x-icon">
</head>
<body>
<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>
<!-- Login Section here -->
<div class="reg-box">
<div class="hed">
<div>
<h3>SIGN IN</h2>
</div>
<div>
<h3><a href="signup.html">REGISTER</a></h2>
</div>
</div>
<input id="mail" class="inp" type="mail" placeholder="Email">
<input id="pass" class="inp" type="password" placeholder="Password">
<div id="forgot-div">
<div>
<input type="checkbox" id="check">
<label for="check">Keep me signed in ?</label>
</div>
<div>
<u>forgot your password ?</u>
</div>
</div>
<button id="bt">Sign In</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>
</div>
</body>
</html>
<script src="./scripts/login.js"></script>