Created
June 1, 2016 09:57
-
-
Save talha08/6859891ae0cbfc0e5ab2fb9582db37ef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Wizard with Validation --> | |
<div class="row"> | |
<div class="col-md-12"> | |
<div class="panel panel-default"> | |
<div class="panel-heading"> | |
<h3 class="panel-title">Wizard with Validation</h3> | |
</div> | |
<div class="panel-body"> | |
<form id="wizard-validation-form" action="#"> | |
<div> | |
<h3>Step 1</h3> | |
<section> | |
<div class="form-group clearfix"> | |
<label class="col-lg-2 control-label " for="userName2">User name </label> | |
<div class="col-lg-10"> | |
<input class="form-control" id="userName2" name="userName" type="text"> | |
</div> | |
</div> | |
<div class="form-group clearfix"> | |
<label class="col-lg-2 control-label " for="password2"> Password *</label> | |
<div class="col-lg-10"> | |
<input id="password2" name="password" type="text" class="required form-control"> | |
</div> | |
</div> | |
<div class="form-group clearfix"> | |
<label class="col-lg-2 control-label " for="confirm2">Confirm Password *</label> | |
<div class="col-lg-10"> | |
<input id="confirm2" name="confirm" type="text" class="required form-control"> | |
</div> | |
</div> | |
<div class="form-group clearfix"> | |
<label class="col-lg-12 control-label ">(*) Mandatory</label> | |
</div> | |
</section> | |
<h3>Step 2</h3> | |
<section> | |
<div class="form-group clearfix"> | |
<label class="col-lg-2 control-label" for="name2"> First name *</label> | |
<div class="col-lg-10"> | |
<input id="name2" name="name" type="text" class="required form-control"> | |
</div> | |
</div> | |
<div class="form-group clearfix"> | |
<label class="col-lg-2 control-label " for="surname2"> Last name *</label> | |
<div class="col-lg-10"> | |
<input id="surname2" name="surname" type="text" class="required form-control"> | |
</div> | |
</div> | |
<div class="form-group clearfix"> | |
<label class="col-lg-2 control-label " for="email2">Email *</label> | |
<div class="col-lg-10"> | |
<input id="email2" name="email" type="text" class="required email form-control"> | |
</div> | |
</div> | |
<div class="form-group clearfix"> | |
<label class="col-lg-2 control-label " for="address2">Address </label> | |
<div class="col-lg-10"> | |
<input id="address2" name="address" type="text" class="form-control"> | |
</div> | |
</div> | |
<div class="form-group clearfix"> | |
<label class="col-lg-12 control-label ">(*) Mandatory</label> | |
</div> | |
</section> | |
<h3>Step 3</h3> | |
<section> | |
<div class="form-group clearfix"> | |
<div class="col-lg-12"> | |
<ul class="list-unstyled w-list"> | |
<li>First Name : Jonathan </li> | |
<li>Last Name : Smith </li> | |
<li>Emial: [email protected]</li> | |
<li>Address: 123 Your City, Cityname. </li> | |
</ul> | |
</div> | |
</div> | |
</section> | |
<h3>Step Final</h3> | |
<section> | |
<div class="form-group clearfix"> | |
<div class="col-lg-12"> | |
<input id="acceptTerms-2" name="acceptTerms2" type="checkbox" class="required"> | |
<label for="acceptTerms-2">I agree with the Terms and Conditions.</label> | |
</div> | |
</div> | |
</section> | |
</div> | |
</form> | |
</div> <!-- End panel-body --> | |
</div> <!-- End panel --> | |
</div> <!-- end col --> | |
</div> <!-- End row --> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment