"Form Build"
Bootstrap 3.3.0 Snippet by shahrouq

<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 ----------> <form class="form-horizontal"> <fieldset> <!-- Form Name --> <legend>Register</legend> <!-- Select Basic --> <div class="form-group"> <label class="col-md-4 control-label" for="selectbasic">Type of Organization</label> <div class="col-md-4"> <select id="selectbasic" name="selectbasic" class="form-control"> <option value="1">Partnership</option> <option value="2">Individual</option> </select> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="textname">Name</label> <div class="col-md-4"> <input id="textname" name="textname" type="text" placeholder="Enter Name" class="form-control input-md" required=""> </div> </div> <!-- Multiple Radios (inline) --> <div class="form-group"> <label class="col-md-4 control-label" for="radios">Registration</label> <div class="col-md-4"> <label class="radio-inline" for="radios-0"> <input type="radio" name="radios" id="radios-0" value="1" checked="checked"> Registered </label> <label class="radio-inline" for="radios-1"> <input type="radio" name="radios" id="radios-1" value="2"> Un-Registered </label> </div> </div> <!-- File Button --> <div class="form-group"> <label class="col-md-4 control-label" for="filebutton">Registration Certificate</label> <div class="col-md-4"> <input id="filebutton" name="filebutton" class="input-file" type="file"> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="textinput">PAN </label> <div class="col-md-4"> <input id="textinput" name="textinput" type="text" placeholder="PAN Card Number" class="form-control input-md" required=""> </div> </div> <!-- File Button --> <div class="form-group"> <label class="col-md-4 control-label" for="filebutton">PAN Card</label> <div class="col-md-4"> <input id="filebutton" name="filebutton" class="input-file" type="file"> </div> </div> <!-- Textarea --> <div class="form-group"> <label class="col-md-4 control-label" for="textarea">Address</label> <div class="col-md-4"> <textarea class="form-control" id="textarea" name="textarea">Enter Address</textarea> </div> </div> <!-- Input Type : Number --> <div class="form-group"> <label class="col-md-4 control-label" for="typenumber">No of Partners: </label> <div class="col-md-4"> <input type="number" name="quantity" min="1" max="5" value="2"> </div> </div> <label class="col-md-4 control-label"><b> <font size="4">Partner1</font></b></label> </fieldset> </form>

Related: See More


Questions / Comments: