This simple attractive form will done by using css3 and html and validation purpose we used the JavaScript. The form is processed the validation step by step by clicking the next button. Here have a final step to verify the all of your form contents with your data. You can customize this form according to your project. I hope this tutorial is very useful for the developers.
This multiple step form is the responsive form it will fit all the device because its done by using bootstrap and html . This multi step form is used to reduce the webpage space as well the user attraction. The below example have the codes and demo page. Check the below demo page for your better understanding of this Three(3) Level form with validation.
Html Code Multi-Step form with Validation:
<br><br>
<form class=”form-horizontal form”>
<div class=”col-md-8 col-md-offset-2″>
<div class=”progress”>
<div class=”progress-bar progress-bar-success progress-bar-striped active” role=”progressbar” aria-valuemin=”0″ aria-valuemax=”100″></div>
</div>
<div class=”box row-fluid”>
<br>
<div class=”step”>
<div class=”form-group”>
<label for=”name” class=”col-sm-2 control-label”>Name</label>
<div class=”col-sm-10″>
<input type=”text” name=”name” class=”form-control” id=”name” placeholder=”Name”>
</div>
</div>
<div class=”form-group”>
<label for=”email” class=”col-sm-2 control-label”>Email</label>
<div class=”col-sm-10″>
<input type=”text” name=”email” class=”form-control” id=”email” placeholder=”email”>
</div>
</div>
<div class=”form-group”>
<label for=”country” class=”col-sm-2 control-label”>Country</label>
<div class=”col-sm-10″>
<select class=”form-control” name=”country” id=”country”>
<option value=””>Select</option>
<option value=”India”>India</option>
<option value=”Australia”>Australia</option>
<option value=”USA”>USA</option>
<option value=”Japan”>Japan</option>
<option value=”Singapore”>Singapore</option>
<option value=”Malaysia”>Malaysia</option>
</select>
</div>
</div>
</div>
<div class=”step”>
<div class=”form-group”>
<label for=”username” class=”col-sm-2 control-label”>Username</label>
<div class=”col-sm-10″>
<input type=”text” name=”username” value=”” class=”form-control” id=”username” placeholder=”Username”>
</div>
</div>
<div class=”form-group”>
<label for=”password” class=”col-sm-2 control-label”>Password</label>
<div class=”col-sm-10″>
<input type=”password” name=”password” value=”” class=”form-control” id=”password” placeholder=”Password”>
</div>
</div>
<div class=”form-group”>
<label for=”rpassword” class=”col-sm-2 control-label”>Retype Password</label>
<div class=”col-sm-10″>
<input type=”password” name=”rpassword” class=”form-control” id=”rpassword” placeholder=”Retype password”>
</div>
</div>
</div>
<div class=”step display”>
<h4>Confirm Details</h4>
<div class=”form-group”>
<label class=”col-sm-2 control-label”>Name :</label>
<label class=”col-md-10 control-label lbl” data-id=”name”></label>
</div>
<div class=”form-group”>
<label class=”col-sm-2 control-label”>Email :</label>
<label class=”col-md-10 control-label lbl” data-id=”email”></label>
</div>
<div class=”form-group”>
<label class=”col-sm-2 control-label”>Country :</label>
<label class=”col-md-10 control-label lbl” data-id=”country”></label>
</div>
<div class=”form-group”>
<label class=”col-sm-2 control-label”>Username :</label>
<label class=”col-md-10 control-label lbl” data-id=”username”></label>
</div>
<div class=”form-group”>
<label class=”col-sm-2 control-label”>Password :</label>
<label class=”col-md-10 control-label lbl” data-id=”password”></label>
</div>
</div>
<div class=”row”>
<div class=”col-sm-12″>
<div class=”pull-right”>
<button type=”button” class=”action btn-sky text-capitalize back btn”>Back</button>
<button type=”button” class=”action btn-sky text-capitalize next btn”>Next</button>
<button type=”button” class=”action btn-hot text-capitalize submit btn”>Submit</button>
</div>
</div>
</div>
</div>
<a style=”color:#fff; float:right;” href=”http://www.sanwebcorner.com/”><h3>www.sanwebcorner.com</h3></a>
</div>
</form>
</div>

