Created
December 10, 2012 14:11
-
-
Save SergeiGolos/4250767 to your computer and use it in GitHub Desktop.
[BOOTSTRAP] Useful Snippits
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
<!-- | |
************** Inline Forms *********************** | |
--> | |
<form class="form-inline"> | |
<input type="text" class="input-small" placeholder="Email"> | |
<input type="password" class="input-small" placeholder="Password"> | |
<label class="checkbox"> | |
<input type="checkbox"> Remember me | |
</label> | |
<button type="submit" class="btn">Sign in</button> | |
</form> | |
<!-- | |
************** Inline Forms *********************** | |
--> | |
<form class="form-horizontal"> | |
<div class="control-group"> | |
<label class="control-label" for="inputEmail">Email</label> | |
<div class="controls"> | |
<input type="text" id="inputEmail" placeholder="Email"> | |
</div> | |
</div> | |
<div class="control-group"> | |
<label class="control-label" for="inputPassword">Password</label> | |
<div class="controls"> | |
<input type="password" id="inputPassword" placeholder="Password"> | |
</div> | |
</div> | |
<div class="control-group"> | |
<div class="controls"> | |
<label class="checkbox"> | |
<input type="checkbox"> Remember me | |
</label> | |
<button type="submit" class="btn">Sign in</button> | |
</div> | |
</div> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment