"formbuild 1"
Bootstrap 3.3.0 Snippet by dinodude

<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>Form Name</legend> <!-- Button Drop Down --> <div class="form-group"> <label class="col-md-4 control-label" for="Title">Title</label> <div class="col-md-2"> <div class="input-group"> <input name="Title" class="form-control" id="Title" type="text" placeholder="Title"> <div class="input-group-btn"> <button class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown"> ----- <span class="caret"></span> </button> <ul class="dropdown-menu pull-right"> <li><a href="#">Mr.</a></li> <li><a href="#">Mrs.</a></li> <li><a href="#">Ms.</a></li> <li><a href="#">Miss</a></li> </ul> </div> </div> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="First Name">First Name</label> <div class="col-md-4"> <input name="First Name" class="form-control input-md" id="First Name" required="" type="text" placeholder="Name Here"> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="Address 1">Address 1</label> <div class="col-md-5"> <input name="Address 1" class="form-control input-md" id="Address 1" required="" type="text" placeholder="Address 1"> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="Address 2">Address 2</label> <div class="col-md-5"> <input name="Address 2" class="form-control input-md" id="Address 2" required="" type="text" placeholder="Address 2"> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="Town">Town</label> <div class="col-md-5"> <input name="Town" class="form-control input-md" id="Town" required="" type="text" placeholder="Town"> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="PostCode">PostCode</label> <div class="col-md-4"> <input name="PostCode" class="form-control input-md" id="PostCode" required="" type="text" placeholder="PostCode"> </div> </div> <!-- Prepended text--> <div class="form-group"> <label class="col-md-4 control-label" for="Telephone">Telephone</label> <div class="col-md-5"> <div class="input-group"> <span class="input-group-addon">Tel.</span> <input name="Telephone" class="form-control" id="Telephone" type="text" placeholder="Number"> </div> </div> </div> <!-- Prepended text--> <div class="form-group"> <label class="col-md-4 control-label" for="Email">Email</label> <div class="col-md-6"> <div class="input-group"> <span class="input-group-addon">Email</span> <input name="Email" class="form-control" id="Email" required="" type="text" placeholder="Address"> </div> </div> </div> <!-- Multiple Checkboxes (inline) --> <div class="form-group"> <label class="col-md-4 control-label" for="Contact Preference">Contact Preference</label> <div class="col-md-4"> <label class="checkbox-inline" for="Contact Preference-0"> <input name="Contact Preference" id="Contact Preference-0" type="checkbox" value="Tel."> Tel. </label> <label class="checkbox-inline" for="Contact Preference-1"> <input name="Contact Preference" id="Contact Preference-1" type="checkbox" value="Email"> Email </label> </div> </div> <!-- Multiple Checkboxes --> <div class="form-group"> <label class="col-md-4 control-label" for="Product Choices">Product Choices</label> <div class="col-md-4"> <div class="checkbox"> <label for="Product Choices-0"> <input name="Product Choices" id="Product Choices-0" type="checkbox" value="Windows"> Windows </label> </div> <div class="checkbox"> <label for="Product Choices-1"> <input name="Product Choices" id="Product Choices-1" type="checkbox" value="Doors"> Doors </label> </div> <div class="checkbox"> <label for="Product Choices-2"> <input name="Product Choices" id="Product Choices-2" type="checkbox" value="Conservatory"> Conservatory </label> </div> </div> </div> <!-- File Button --> <div class="form-group"> <label class="col-md-4 control-label" for="Upload">Upload</label> <div class="col-md-4"> <input name="Upload" class="input-file" id="Upload" type="file"> </div> </div> <!-- Password input--> <div class="form-group"> <label class="col-md-4 control-label" for="passwordinput">Password Input</label> <div class="col-md-4"> <input name="passwordinput" class="form-control input-md" id="passwordinput" type="password" placeholder="placeholder"> <span class="help-block">help</span> </div> </div> <!-- Button (Double) --> <div class="form-group"> <label class="col-md-4 control-label" for="Send">Send</label> <div class="col-md-8"> <button name="Send" class="btn btn-success" id="Send">Send</button> <button name="Reset" class="btn btn-danger" id="Reset">Reset</button> </div> </div> </fieldset> </form>

Related: See More


Questions / Comments: