-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
70 lines (62 loc) · 2.61 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Login</title>
<link href="https://fonts.googleapis.com/css?family=Lora:400,700|Montserrat:300" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Chivo:300,700|Playfair+Display:700i" rel="stylesheet">
<link rel="stylesheet" href="css/style_index.css">
<link rel="stylesheet" href="css/demo.css">
<link rel="stylesheet" href="css/nav.css">
<link rel="stylesheet" href="css/categories.css">
<link rel="stylesheet" href="css/login.css">
</head>
<body style="background-color: #ffffff ;">
<!-- navbar -->
<nav>
<div class="logo">
<h3><a href="merlin.html" class="logo-name">Modern Fashion</a></h3>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="categories.html">Categories</a></li>
<li><a href="contact.html">ContactUs</a></li>
<li><a href="login.html" id="login">Login</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<!-- navbar -->
<div class="login">
<img src="images/login-images/login.png" alt="">
<div class="vl"></div>
<img src="images/login-images/undraw_empty_cart_co35.png" class="login-image" alt="">
</div>
<center>LOGIN HERE 🦄</center>
<br><br>
<div class="login-form">
<input type="text" placeholder="Username Or Email" id="username">
<br><br>
<input type="password" placeholder="Password" id="password"><br><br>
<a href="index.html"><button class="login-button">LOG IN</button></a>
<a href="index.html"> <button class="back-button">BACK </button></a>
</div>
<hr>
<br>
<h4 class="other-login-op">Or login with</h4>
<br>
<div class="social">
<a href="https://google.com"><img src="images/icons/icon-google.png" class="other-login-op-img" height="33" width="30"alt=""></a>
<a href="https://facebook.com"><img src="images/icons/fb.png" class="other-login-op-img" height="30" width="35" alt=""></a>
<a href="https://google.com"><img src="images/icons/favicon.jpg" class="other-login-op-img" height="32" width="35"alt=""></a>
</div>
<script type="text/javascript" src="js/nav.js"></script>
<script src="js/login.js"></script>
</body>
</html>