Skip to content

Commit

Permalink
abc
Browse files Browse the repository at this point in the history
  • Loading branch information
rakshhh31 committed Feb 9, 2023
0 parents commit ad14b0b
Show file tree
Hide file tree
Showing 8 changed files with 175 additions and 0 deletions.
50 changes: 50 additions & 0 deletions boot.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link disabled">Disabled</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid col-sm-8 offset-sm-2 col-lg-6 offset-lg-3 col-xl-4 offset-xl-4 text-center">
...<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="[email protected]">
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">Example textarea</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>

<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-secondary">Secondary</button>
<button type="button" class="btn btn-success">Success</button>
</div>
</body>
</html>
1 change: 1 addition & 0 deletions img/Colored Shapes.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions img/facebook.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions img/icons8-google.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions img/linkedin (1).svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 56 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@

<!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/[email protected]/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="[email protected]">
<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>

65 changes: 65 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
/* Google Poppins Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
margin:0;
padding:0;
box-sizing: border-box;
}

/* Variables */
:root{
--primary-font-family: 'Poppins', sans-serif;
--light-white:#f5f8fa;
--gray:#5e6278;
--gray-1:#e3e3e3;
}
body{
font-family:var(--primary-font-family);
font-size: 14px;
}

/* Main CSS */
.wrapper{
padding:0 0 100px;
background-image:url('img/Colored\ Shapes.svg');
background-repeat: no-repeat;
background-position: bottom center;
background-attachment: fixed;
background-size:contain;
min-height: 100%;
}
.wrapper .logo img{
max-width:80%;
}
.wrapper input{
background-color: var(--light-white);
border-color: var(--light-white);
color: var(--gray);
}
.wrapper input:focus{
box-shadow: none;
}
.wrapper .submit_btn{
padding:15px;
font-weight: 500;
}
.wrapper .login_with{
padding:15px;
font-size: 15px;
font-weight: 500;
transition:0.3s ease-in-out;
}
.wrapper .submit_btn:focus,
.wrapper .login_with:focus{
box-shadow: none;
}
.wrapper .login_with:hover{
background-color:var(--gray-1);
border-color:var(--gray-1);
}
.wrapper .login_with img{
max-width: 8%;
}


0 comments on commit ad14b0b

Please sign in to comment.