-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
80 lines (76 loc) · 2.9 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
71
72
73
74
75
76
77
78
79
80
<!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>Document</title>
<link rel="stylesheet" href="login.css">
</head>
<body>
<div id= "container1">
<a href="index.html">
<img id = "name" src="https://m.bobbibrowncosmetics.com/media/export/cms/logo.png" width= 300 alt="">
</a>
</div>
<div id ="header">
<h2>MY ACCOUNT</h2>
<div><h4>LOG IN</h4></div>
</div>
<div id = "container">
<div id = "first">
<h5>NEW CUSTOMERS</h5>
<hr/>
<form>
<p>*Required</p>
<input id = "email" type="text" placeholder="*Email address">
<p>0</p>
<input id = "pass" type="password" placeholder="*Password">
<p id="para"></p>
<div>
<div class="condition-div">
<div id = "checkbox">
<input type="checkbox">
<p>Show password</p>
</div>
<div id ="checkbox">
<input type="checkbox" >
<p>*I agree to Bobbi Brown's<a href="#">Terms and Conditons</a> and
<a href="#">Privacy Policy</a>
</p>
</div>
<div id ="checkbox">
<input type="checkbox">
<p>Yes! I would like to receive the Bobbi Brown Newsletter.</p>
</div>
<i class="fas fa-info-circle"></i>
</div>
<div class="last-div">
<a href="">Read the Privacy Policy</a>
</div>
</div>
<br/>
<input type="submit" value="CONTINUE">
</form>
</div>
<div id ="second">
<h5>SIGN IN</h5>
<hr/>
<form id = "form">
<p>*Required</p>
<input id = "mail" type="text" placeholder="*Email address">
<br/>
<br/>
<input id = "pas" type="password" placeholder="*Password">
<br/>
<p id="login-para"></p>
</br>
<a href="">Forgot your password</a>
<br/>
<input id = "submit" type="submit" value="CONTINUE">
</form>
</div>
</div>
</body>
</html>
<script type="text/javascript" src="login.js"></script>