-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (52 loc) · 2.2 KB
/
index.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
<!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>Responsive Login Form Using Bootstrap 5</title>
<!-- Bootstrap 5 CDN Link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS Link -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="wrapper">
<div class="container">
<div class="col-sm-8 offset-sm-2 col-lg-6 offset-lg-3 col-xl-4 offset-xl-4 text-center">
<div class="logo">
<img src="img/cover.png" class="img-fluid" alt="Logo">
</div>
<form class="rounded bg-white shadow py-5 px-4">
<h3 class="text-dark fw-bolder fs-4 mb-2">Sign In to Bluepage</h3>
<div class="fw-normal text-muted mb-4"> New Here?
<a href="#" class="text-primary fw-bold text-decoration-none">Create an Account</a>
</div>
<div class="form-floating mb-3">
<input type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
<label for="floatingInput">Email address</label>
</div>
<div class="form-floating">
<input type="password" class="form-control" id="floatingPassword" placeholder="Password">
<label for="floatingPassword">Password</label>
</div>
<div class="mt-2 text-end">
<a href="#" class="text-primary fw-bold text-decoration-none">Forget Password?</a>
</div>
<button type="submit" class="btn btn-primary submit_btn w-100 my-4">Continue</button>
<div class="text-center text-muted text-uppercase mb-3">or</div>
<a href="#" class="btn btn-light login_with w-100 mb-3">
<img alt="Logo" src="img/icons8-google.svg" class="img-fluid me-3">Continue with Google
</a>
<a href="#" class="btn btn-light login_with w-100 mb-3">
<img alt="Logo" src="img/facebook.svg" class="img-fluid me-3">Continue with Facebook
</a>
<a href="#" class="btn btn-light login_with w-100 mb-3">
<img alt="Logo" src="img/linkedin (1).svg" class="img-fluid me-3">Continue with Linkedin
</a>
</form>
</div>
</div>
</section>
</body>
</html>