-
Notifications
You must be signed in to change notification settings - Fork 1
/
sign_in.html
145 lines (133 loc) · 4.64 KB
/
sign_in.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!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>Login</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/form.css">
<link rel="stylesheet" href="css/header.css">
</head>
<body>
<!-- Header Starts Here -->
<header>
<div>
<div id="heading_first_row">
<div class="heading_one">
<div>
<img src="https://image.flaticon.com/icons/png/128/927/927667.png" /><a href="" target="_blank"></a>
</div>
<div>STORE & SPA LOCATOR</div>
</div>
<div class="heading_one">
<div>
<img src="https://t4.ftcdn.net/jpg/04/41/89/73/240_F_441897335_o5l9z54efVNgBtGnvjMdUVPK2W94k95M.jpg" />
</div>
<div>WISHLIST</div>
</div>
<div class="heading_one">
<div>
<img src="https://image.flaticon.com/icons/png/128/622/622669.png" />
</div>
<div>SEARCH</div>
</div>
<div id="click-log" class="heading_one">
<div>
<img src="https://static.thenounproject.com/png/3144376-200.png" />
</div>
<div>SIGN IN/UP</div>
</div>
<div class="heading_one" onclick="window.location.href = 'cart.html'">
<div>
<img src="https://image.flaticon.com/icons/png/128/687/687259.png" />
</div>
<div>BAG</div>
</div>
</div>
<div class="heading_two"><img id="img-click"
src="https://cdn.shopify.com/s/files/1/0283/0185/2747/files/blm_36dad4a4-9b14-4ef8-9509-6a593f135aae_416x@2x.png?v=1588538421">
</div>
<div id="heading_second_row">
<div></div>
<div><a class="heading_a" href="" target="_blank">SHOP</a></div>
<div><a class="heading_a" href="" target="_blank" id="go-to-new">NEW!</a></div>
<div><a class="heading_a" href="" target="_blank">BRANDS</a></div>
<div><a class="heading_a" href="" target="_blank">EXPLORE</a></div>
<div><a class="heading_a" href="" target="_blank">EVENTS</a></div>
<div><a class="heading_a" href="" target="_blank">BLUEREWARDS</a></div>
<div></div>
</div>
</div>
</header>
<!-- Header Ends Here -->
<div id="bluewards"></div>
<form id="customer-login" class="Form">
<header class="Form_header">
<h1>LOGIN</h1>
<p>Please enter your e-mail and password:</p>
</header>
<div class="Form_Box">
<input id="Email" type="email" class="Form_Ip" name="user_email" placeholder="Email">
<label class="Form_Invisible" for="user_email">Email</label>
</div>
<div class="Form_Box" style="border: 1px solid #12284c; display: flex;">
<input id="Password" type="password" style="width: 330px; border: none;" class="Form_Ip" name="password"
placeholder="Password">
<button class="Help_btn" type="button" onclick="window.location.href='forgot_password.html'">Forgot
password?</button>
</div>
<label class="Form_Invisible" for="password">Password</label>
<a>
<button class="End_btn" onclick="loginUser(event)">LOGIN</button>
</a>
<div class="centre">
<span>Don't have an account?</span>
<a href="create_one.html">Create one</a>
</div>
</form>
<hr />
<!-- Footer Start -->
<div id="foot">
<div id="foot-first">
<p>Get Expert Beauty Insight & Offers</p>
<input type="email" name="" id="email" placeholder="EMAIL ADDRESS">
<button onclick="mailSent()">→</button>
<div>To learn more about how we use your information and your rights, see Privacy Note</div>
<div class="copyright">Copyright 2021 bluemercury. All Rights Reserved.</div>
</div>
<div>
<p>BLUEMERCURY</p>
<p>Our Company</p>
<p>Store Locator</p>
<p>Spa Menu</p>
<p>Press</p>
<p>Careers</p>
</div>
<div>
<p>MY ACCOUNT</p>
<p>My Account</p>
<p>Blue Rewards</p>
</div>
<div>
<p>CUSTOMER SERVICE</p>
<p>Contact Us</p>
<p>Help & FAQ</p>
<p>Offers</p>
<p>Klarna</p>
</div>
<div>
<p>RESOURCES</p>
<p>Terms & Conditions</p>
<p>Privacy Policy</p>
<p>Accessibility</p>
<p>COVID-19 Updates</p>
</div>
</div>
<!-- Footer End -->
</body>
</html>
<script src="js/form.js"></script>
<script src="js/header.js"></script>