Skip to content

Instantly share code, notes, and snippets.

@SergeiGolos
Created December 10, 2012 14:11
Show Gist options
  • Save SergeiGolos/4250767 to your computer and use it in GitHub Desktop.
Save SergeiGolos/4250767 to your computer and use it in GitHub Desktop.
[BOOTSTRAP] Useful Snippits
<!--
************** 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