Introduction
Today we will learn about How to Create a Responsive Secure Login Form.

HTML Structure
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Form 3</title>
<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
</head>
<body>
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-6 col-sm-8">
<div class="login-panel">
<h3 class="text-center mb-5">Secure Login</h3>
<form>
<div class="form-group">
<label for="email3">Email:</label>
<input type="email" class="form-control" id="email3" placeholder="Enter your email" required>
</div>
<div class="form-group">
<label for="password3">Password:</label>
<input type="password" class="form-control" id="password3" placeholder="Enter your password" required>
</div>
<div class="form-group form-check">
<input type="checkbox" class="form-check-input" id="rememberMe3">
<label class="form-check-label" for="rememberMe3">Remember me</label>
</div>
<button type="submit" class="btn btn-warning btn-block">Login</button>
</form>
<div class="text-center mt-4">
<a href="#" class="text-light">Forgot password?</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
CSS Structure
<style>
body {
background-color: #333;
color: #fff;
}
.login-panel {
background-color: rgba(0,0,0,0.5);
padding: 30px;
border-radius: 15px;
}
.login-panel label {
color: #ddd;
}
</style>
JavaScript and jQuery
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.3/dist/umd/popper.min.js" integrity="sha384-eMNCOe7tC1do4A+gf8k5l7l4lMz4i3WDQn1Z7y/JonasIUNsobEU5n3o6l3l3ZTk" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8sh+Wy4Ck4SOF4y4Ck4C2DgHfViXydVeLm+JDM" crossorigin="anonymous"></script>
Code Include
This Login Form code includes the mentioned things
- HTML Code
- CSS Code
- Javascript Code
Secure Login Form Features
- Desktop View is Perfect
- Mobile View is Perfect
- Include Bootstrap CDN Library
How to Create a Responsive Secure Login Form. Manglastubh By Ankit Akolkar. Search on Google Free Online Courses.

Welcome to Manglastubh By Ankit Akolkar. Manglastubh website is designed and developed for all kinds of Knowledge-Based Blogs and Articles. Everyone will gain knowledge over here from this website.