
Login / Sign up
Before We Start
Login / Sign up. A login is the security of a system which is a set of credentials used to authenticate the users. Most often, these consist of some form of “username” and a matching “password”, and they are used to prevent unauthorized access to confidential data.
In a website the users can enter their own username and password and can check those by using validations which is correct or wrong and if it is wrong, users can identify which part has the problem, the username or the password.
In a website the login section is an important part and it helps the users to keep the trust on their account and data. So if you are a person who wishes to develop a website, you have to know how to create a login part properly. We are here to solve your problem.
However in this article you are going to learn, how to develop a full featured login page front end part of a website.
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.
<html>
<bod>
<div class="container">
<div class="box"></div>
<div class="container-forms">
<div class="container-info">
<div class="info-item">
<div class="table">
<div class="table-cell">
<p>
Have an account?
</p>
<div class="btn">
Log in
</div>
</div>
</div>
</div>
<div class="info-item">
<div class="table">
<div class="table-cell">
<p>
Don't have an account?
</p>
<div class="btn">
Sign up
</div>
</div>
</div>
</div>
</div>
<div class="container-form">
<div class="form-item log-in">
<div class="table">
<div class="table-cell">
<input name="Username" placeholder="Username" type="text" /><input name="Password" placeholder="Password" type="Password" />
<div class="btn">
Log in
</div>
</div>
</div>
</div>
<div class="form-item sign-up">
<div class="table">
<div class="table-cell">
<input name="email" placeholder="Email" type="text" /><input name="fullName" placeholder="Full Name" type="text" /><input name="Username" placeholder="Username" type="text" /><input name="Password" placeholder="Password" type="Password" />
<div class="btn">
Sign up
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
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 <head></head> tag.
<link href='https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css' rel='stylesheet' type='text/css'>
Copy and paste below code in your HTML editor between <style></style> tag.
<style>
@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Oswald|Roboto);
body {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
font-family: "Roboto", sans-serif;
background-color: #00d4ff;
overflow: hidden;
}
.table {
display: table;
width: 100%;
height: 100%;
}
.table-cell {
display: table-cell;
vertical-align: middle;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
.container {
position: relative;
width: 600px;
margin: 30px auto 0;
height: 320px;
background-color: #fc466b;
top: 50%;
margin-top: -160px;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
.container .box {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.container .box:before, .container .box:after {
content: " ";
position: absolute;
left: 152px;
top: 50px;
background-color: #bd2b48;
transform: rotateX(52deg) rotateY(15deg) rotateZ(-38deg);
width: 300px;
height: 285px;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
.container .box:after {
background-color: #bd2b48;
top: -10px;
left: 80px;
width: 320px;
height: 180px;
}
.container .container-forms {
position: relative;
}
.container .btn {
cursor: pointer;
text-align: center;
margin: 0 auto;
width: 60px;
color: #fff;
background-color: #fc466b;
opacity: 1;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
.container .btn:hover {
opacity: 0.7;
}
.container .btn, .container input {
padding: 10px 15px;
}
.container input {
margin: 0 auto 15px;
display: block;
width: 220px;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.container .container-forms .container-info {
text-align: left;
font-size: 0;
}
.container .container-forms .container-info .info-item {
text-align: center;
font-size: 16px;
width: 300px;
height: 320px;
display: inline-block;
vertical-align: top;
color: #fff;
opacity: 1;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.container .container-forms .container-info .info-item p {
font-size: 20px;
margin: 20px;
}
.container .container-forms .container-info .info-item .btn {
background-color: transparent;
border: 1px solid #fff;
}
.container .container-forms .container-info .info-item .table-cell {
padding-right: 35px;
}
.container .container-forms .container-info .info-item:nth-child(2) .table-cell {
padding-left: 35px;
padding-right: 0;
}
.container .container-form {
overflow: hidden;
position: absolute;
left: 30px;
top: -30px;
width: 305px;
height: 380px;
background-color: #fff;
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
.container .container-form:before {
content: "✔";
position: absolute;
left: 160px;
top: -50px;
color: #5356ad;
font-size: 130px;
opacity: 0;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
.container .container-form .btn {
position: relative;
box-shadow: 0 0 10px 1px #ff73b3;
margin-top: 30px;
}
.container .form-item {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 1;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
-webkit-transition: all 0.5s;
transition: all 0.5s;
}
.container .form-item.sign-up {
position: absolute;
left: -100%;
opacity: 0;
}
.container.log-in .box:before {
position: absolute;
left: 180px;
top: 62px;
height: 265px;
}
.container.log-in .box:after {
top: 22px;
left: 192px;
width: 324px;
height: 220px;
}
.container.log-in .container-form {
left: 265px;
}
.container.log-in .container-form .form-item.sign-up {
left: 0;
opacity: 1;
}
.container.log-in .container-form .form-item.log-in {
left: -100%;
opacity: 0;
}
.container.active {
width: 260px;
height: 140px;
margin-top: -70px;
}
.container.active .container-form {
left: 30px;
width: 200px;
height: 200px;
}
.container.active .container-form:before {
content: "✔";
position: absolute;
left: 51px;
top: 5px;
color: #5356ad;
font-size: 130px;
opacity: 1;
}
.container.active input, .container.active .btn, .container.active .info-item {
display: none;
opacity: 0;
padding: 0px;
margin: 0 auto;
height: 0;
}
.container.active .form-item {
height: 100%;
}
.container.active .container-forms .container-info .info-item {
height: 0%;
opacity: 0;
}
.rabbit {
width: 50px;
height: 50px;
position: absolute;
bottom: 20px;
right: 20px;
z-index: 3;
fill: #fff;
}
</style>
Step 3 – Add JavaScript
We use some external JavaScript link to this code. No need to worry about this, copy and paste below code between <head></head> or any place in your code between <script></script> tag.
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
Copy and paste below code in your HTML editor between <script></script> tag.
<script>
$(".info-item .btn").click(function(){
$(".container").toggleClass("log-in");
});
$(".container-form .btn").click(function(){
$(".container").addClass("active");
});
</script>
At the end we will have something like this. You can change fonts, colors, backgrounds and all things that you want. Enjoy it.


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.
——————————————————————————————————————–