-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (48 loc) · 1.67 KB
/
Copy pathindex.html
File metadata and controls
59 lines (48 loc) · 1.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bloom Bar</title>
<!-- icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- Styles -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section id="login-form">
<div class="content-grid">
<div class="left">
<h1 class="section-head">login</h1>
<p class="section-slogan">welcome to Bloom Bar</p>
<div class="input-wrap">
<input type="text" placeholder="Enter your email">
<i class="fa-solid fa-user"></i>
</div>
<div class="input-wrap">
<input type="password" placeholder="Enter your password">
<i class="fa-solid fa-lock"></i>
</div>
<button class="login-btn">Login</button>
<p class="or">OR</p>
<button class="social-login">
<img class="google-img" src="images/google.png">
Login with google
</button>
<button class="social-login">
<img class="facebook-img" src="images/facebook.png">
Login with facebook
</button>
<p class="register">Don't have an account <a href="#" class="reg-link">Sign up</a> </p>
<div class="back-img">
<img src="images/b 1.png" class="b1-img" />
<img src="images/b 2.png" class="b2-img" />
</div>
</div>
<div class="right">
<img src="images/main-img.jpg" />
</div>
</div>
</section>
</body>
</html>