Created
February 7, 2015 04:32
-
-
Save metasansana/f782ff7909d074adf520 to your computer and use it in GitHub Desktop.
Generic Form
This file contains 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
<form class="form-horizontal"> | |
<fieldset> | |
<!-- Form Name --> | |
<legend>Contact</legend> | |
<div class="form-group"> | |
<label class="col-md-4 control-label" for="textinput">Name</label> | |
<div class="col-md-4"> | |
<input id="textinput" name="textinput" placeholder="placeholder" class="form-control input-md" type="text"> | |
</div> | |
</div> | |
<div class="form-group"> | |
<label class="col-md-4 control-label" for="radios"></label> | |
<div class="col-md-4"> | |
<div class="radio"> | |
<label for="radios-0"> | |
<input name="radios" id="radios-0" value="1" checked="checked" type="radio"> | |
I like option one. | |
</label> | |
</div> | |
<div class="radio"> | |
<label for="radios-1"> | |
<input name="radios" id="radios-1" value="2" type="radio"> | |
I like option two. | |
</label> | |
</div> | |
</div> | |
</div> | |
<div class="form-group"> | |
<label class="col-md-4 control-label" for="selectbasic">Select Something</label> | |
<div class="col-md-4"> | |
<select id="selectbasic" name="selectbasic" class="form-control"> | |
<option value="1">Option one</option> | |
<option value="2">Option two</option> | |
</select> | |
</div> | |
</div> | |
</fieldset> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment