DEV Community

Codewithrandom Blogs
Codewithrandom Blogs

Posted on

Create Bootstrap Login Form page with Side Image With Source Code

Welcome to the Codewithrandom blog. In this blog, We learn how to Create a Bootstrap Login Form page with Side Image. We use Html, Css, and Bootstrap for the Login Form Page With a Side Image. we have 1 image and login form on the whole page so let's start coding for the Login Form page with Side Image.

I hope you enjoy our blog so let's start with a basic HTML and Bootstrap Structure for the Login Form.

HTML Code For Login Form with Side Image

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://use.fontawesome.com/f59bcd8580.js"></script>
<div class="container">
<div class="row m-5 no-gutters shadow-lg">
<div class="col-md-6 d-none d-md-block">
<img src="https://images.unsplash.com/photo-1566888596782-c7f41cc184c5?ixlib=rb-1.2.1&auto=format&fit=crop&w=2134&q=80" class="img-fluid" style="min-height:100%;" />
</div>
<div class="col-md-6 bg-white p-5">
<h3 class="pb-3">Login Form</h3>
<div class="form-style">
<form>
<div class="form-group pb-3">
<input type="email" placeholder="Email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
</div>
<div class="form-group pb-3">
<input type="password" placeholder="Password" class="form-control" id="exampleInputPassword1">
</div>
<div class="d-flex align-items-center justify-content-between">
<div class="d-flex align-items-center"><input name="" type="checkbox" value="" /> <span class="pl-2 font-weight-bold">Remember Me</span></div>
<div><a href="#">Forget Password?</a></div>
</div>
<div class="pb-2">
<button type="submit" class="btn btn-dark w-100 font-weight-bold mt-2">Submit</button>
</div>
</form>
<div class="sideline">OR</div>
<div>
<button type="submit" class="btn btn-primary w-100 font-weight-bold mt-2"><i class="fa fa-facebook" aria-hidden="true"></i> Login With Facebook</button>
</div>
<div class="pt-4 text-center">
Get Members Benefit. <a href="#">Sign Up</a>
</div>
</div>
</div>
</div>
</div>
Enter fullscreen mode Exit fullscreen mode

There is all HTML and Bootstrap Code for the login form with a side image. Now, you can see output without Css, then we write Css Code for the login form with Side Image.

CSS Code For Login Form with Side Image

body{
background: #c9ccd1;
}
.form-style input{
border:0;
height:50px;
border-radius:0;
border-bottom:1px solid #ebebeb;
}
.form-style input:focus{
border-bottom:1px solid #007bff;
box-shadow:none;
outline:0;
background-color:#ebebeb;
}
.sideline {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
text-align: center;
color:#ccc;
}
button{
height:50px;
}
.sideline:before,
.sideline:after {
content: '';
border-top: 1px solid #ebebeb;
margin: 0 20px 0 0;
flex: 1 0 20px;
}
.sideline:after {
margin: 0 0 0 20px;
}
Enter fullscreen mode Exit fullscreen mode

Now we have completed our Login Form with Side Image. Here is our final updated output Html, Bootstrap and Css.

Now we have completed our Login Form with Side Image. Here is our updated output with HTML, CSS & Bootstrap. Hope you like the Login Form with Side Image, you can see output project screenshots. See our other blogs and gain knowledge in front-end development.

Thank you!

This post teaches us how to create a Login Form with a Side Image using HTML, CSS & Bootstrap. If we made a mistake or any confusion, please drop a comment to reply or help you in easy learning.

Written by - Code With Random/Anki

code by - Bootstraplily.com

Top comments (0)