
how to create a Bootstrap Login page 2
Before We Start
Every developer needs clean and modern elements to develop their websites, It contains pictures and a user interface element within a website. The most important one and the first section that the user sees when the user enters a website. Bootstrap Login page 2
So if you are a person who wishes to develop a website, you have to know how to create that properly.

how to create a Bootstrap Login page 2
We are here to solve your problem. In this article we discuss how to create these elements. Before we start please read the below articles which easier you to understand the process, if you are new to development.
Step 1 – Add HTML
It’s too easy and simple. Just copy and paste below code in your HTML editor between <body> </body> tag.
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Yinka Enoch Adedokun">
<title>Login Page</title>
</head>
<body>
<!-- Main Content -->
<div class="container-fluid">
<div class="row main-content bg-success text-center">
<div class="col-md-4 text-center company__info">
<span class="company__logo">
<h2><span class="fa fa-android"></span></h2>
</span>
<h4 class="company_title">Your Company Logo</h4>
</div>
<div class="col-md-8 col-xs-12 col-sm-12 login_form ">
<div class="container-fluid">
<div class="row">
<h2>Log In</h2>
</div>
<div class="row">
<form control="" class="form-group">
<div class="row">
<input type="text" name="username" id="username" class="form__input" placeholder="Username">
</div>
<div class="row">
<!-- <span class="fa fa-lock"></span> -->
<input type="password" name="password" id="password" class="form__input" placeholder="Password">
</div>
<div class="row">
<input type="checkbox" name="remember_me" id="remember_me" class="">
<label for="remember_me">Remember Me!</label>
</div>
<div class="row">
<input type="submit" value="Submit" class="btn">
</div>
</form>
</div>
<div class="row">
<p>Don't have an account? <a href="#">Register Here</a></p>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="container-fluid text-center footer">
Coded with ♥ by <a href="https://w3schoolweb.com/">W3schoolWeb</a></p>
</div>
</body>
Step 2 – Add CSS
We use some external CSS link to this code. No need to worry about this, copy and paste below code between <style></style> tag.
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
Copy and paste below code in your HTML editor between <style></style> tag.
<style>
.main-content {
width: 50%;
border-radius: 20px;
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
margin: 5em auto;
display: flex;
}
.company__info {
background-color: #008080;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
display: flex;
flex-direction: column;
justify-content: center;
color: #fff;
}
.fa-android {
font-size: 3em;
}
@media screen and (max-width: 640px) {
.main-content {
width: 90%;
}
.company__info {
display: none;
}
.login_form {
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
}
}
@media screen and (min-width: 642px) and (max-width: 800px) {
.main-content {
width: 70%;
}
}
.row > h2 {
color: #008080;
}
.login_form {
background-color: #fff;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
border-top: 1px solid #ccc;
border-right: 1px solid #ccc;
}
form {
padding: 0 2em;
}
.form__input {
width: 100%;
border: 0px solid transparent;
border-radius: 0;
border-bottom: 1px solid #aaa;
padding: 1em 0.5em 0.5em;
padding-left: 2em;
outline: none;
margin: 1.5em auto;
transition: all 0.5s ease;
}
.form__input:focus {
border-bottom-color: #008080;
box-shadow: 0 0 5px rgba(0, 80, 80, 0.4);
border-radius: 4px;
}
.btn {
transition: all 0.5s ease;
width: 70%;
border-radius: 30px;
color: #008080;
font-weight: 600;
background-color: #fff;
border: 1px solid #008080;
margin-top: 1.5em;
margin-bottom: 1em;
}
.btn:hover,
.btn:focus {
background-color: #008080;
color: #fff;
}
</style>
At the end we will have something like this. You can change fonts, colors, backgrounds and all things that you want. Enjoy it.
Your Output

Video Tutorial
Please watch this video to better understand this tutorial and don’t forget to subscribe to our channel.
Help others to find out about this article on Social Media sites. If you have any doubt or any problem, don’t hesitate to contact us. Thereafter we will be able to help you and also make sure you bookmark our site on your browser.