This tutorial you'll learn How to create a Bootstrap Responsive Registration Form
Creating and customizing these bootstrap registration form is quite easy. In this example I have included registration form which you can create easily, let’s start.
I’ve used Bootstrap V 3.3.7 –download it here. Otherwise, you can use the CDN if you don’t want to download.
This Registration form you can edit and customize to use which you want.
Code Example:
<!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">
<title>Bootstrap Responsive Registration Form</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
body{
background-color: #f1f1f1;
}
.register-form{
margin: 50px auto;
padding: 25px 20px;
background: #3a1975;
box-shadow: 2px 2px 4px #ab8de0;
border-radius: 5px;
color: #fff;
}
.register-form h2{
margin-top: 0px;
margin-bottom: 15px;
padding-bottom: 5px;
border-radius: 10px;
border: 1px solid #25055f;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-8 col-xs-12 col-md-offset-3 col-sm-offset-2">
<div class="register-form">
<form action="" method="post">
<h2 class="text-center">Registration</h2>
<p class="hint-text">Create your account. It's free and takes just a minute.</p>
<div class="row">
<div class="col-md-6 col-xs-12">
<div class="form-group">
<input type="text" name="first_name" class="form-control" placeholder="First Name" required="required">
</div>
</div>
<div class="col-md-6 col-xs-12">
<div class="form-group">
<input type="text" name="last_name" class="form-control" placeholder="Last Name" required="required">
</div>
</div>
</div>
<div class="form-group">
<input type="email" name="email" class="form-control" placeholder="Email" required="required">
</div>
<div class="form-group">
<input type="password" name="password" class="form-control" placeholder="Password" required="required">
</div>
<div class="form-group">
<input type="password" name="confirm_password" class="form-control" placeholder="Confirm Password" required="required">
</div>
<div class="form-group">
<label class="checkbox-inline">
<input type="checkbox" required="required"> You agree to the <a href="#">Terms</a> & <a href="#">Conditions</a>.
</label>
</div>
<div class="row">
<div class="col-md-6 col-xs-12">
<div class="form-group">
<input type="submit" value="Register" class="btn btn-primary btn-block btn-lg" tabindex="7">
</div>
</div>
<div class="col-md-6 col-xs-12">
<div class="form-group">
<a href="#" class="btn btn-success btn-block btn-lg">Sign In</a>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>