"Registration form"
Bootstrap 3.3.0 Snippet by kingstone888

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <form class="form-horizontal"> <fieldset> <!-- Form Name --> <legend>Registration Form</legend> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="lastname">Last Name</label> <div class="col-md-5"> <input id="lastname" name="lastname" type="text" placeholder="Your last name" class="form-control input-md" required=""> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="firstname">First Name</label> <div class="col-md-5"> <input id="firstname" name="firstname" type="text" placeholder="Your first name" class="form-control input-md" required=""> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="email">Email</label> <div class="col-md-5"> <input id="email" name="email" type="text" placeholder="Your email here" class="form-control input-md" required=""> <span class="help-block">xxxxxxxxx@xxxxx.xxx</span> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="username">Username</label> <div class="col-md-5"> <input id="username" name="username" type="text" placeholder="Your username" class="form-control input-md" required=""> </div> </div> <!-- Password input--> <div class="form-group"> <label class="col-md-4 control-label" for="password">Password </label> <div class="col-md-5"> <input id="password" name="password" type="password" placeholder="Password" class="form-control input-md" required=""> </div> </div> <!-- Password input--> <div class="form-group"> <label class="col-md-4 control-label" for="confirmasipassword">Konfirmasi Password</label> <div class="col-md-5"> <input id="confirmasipassword" name="confirmasipassword" type="password" placeholder="Confirmation password" class="form-control input-md" required=""> <span class="help-block">Type again your password</span> </div> </div> <!-- Multiple Radios (inline) --> <div class="form-group"> <label class="col-md-4 control-label" for="gender">Gender</label> <div class="col-md-4"> <label class="radio-inline" for="gender-0"> <input type="radio" name="gender" id="gender-0" value="Male" checked="checked"> Male </label> <label class="radio-inline" for="gender-1"> <input type="radio" name="gender" id="gender-1" value="Female"> Female </label> </div> </div> <!-- Button --> <div class="form-group"> <label class="col-md-4 control-label" for="confirmation"></label> <div class="col-md-4"> <button id="confirmation" name="confirmation" class="btn btn-primary">Submit</button> </div> </div> </fieldset> </form> </div> </div>

Related: See More


Questions / Comments: