Skip to content

Instantly share code, notes, and snippets.

@DeanPoulin
Created January 13, 2014 23:22
Show Gist options
  • Select an option

  • Save DeanPoulin/8410046 to your computer and use it in GitHub Desktop.

Select an option

Save DeanPoulin/8410046 to your computer and use it in GitHub Desktop.
Inline Forms
<form class="form-inline" role="form">
<div class="form-group">
<label class="sr-only" for="exampleInputEmail2">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail2" placeholder="Enter email">
</div>
<div class="form-group">
<label class="sr-only" for="exampleInputPassword2">Password</label>
<input type="password" class="form-control" id="exampleInputPassword2" placeholder="Password">
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
<button type="submit" class="btn btn-default">Sign in</button>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment