Created
September 1, 2014 13:36
-
-
Save fisherds/8afdddb7b0cf891e8465 to your computer and use it in GitHub Desktop.
Code snapshot taken from http://getbootstrap.com/css/#forms on 9/2014
This file contains hidden or 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" role="form"> | |
| <div class="form-group"> | |
| <label for="inputEmail3" class="col-sm-2 control-label">Email</label> | |
| <div class="col-sm-10"> | |
| <input type="email" class="form-control" id="inputEmail3" placeholder="Email"> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <label for="inputPassword3" class="col-sm-2 control-label">Password</label> | |
| <div class="col-sm-10"> | |
| <input type="password" class="form-control" id="inputPassword3" placeholder="Password"> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <div class="col-sm-offset-2 col-sm-10"> | |
| <div class="checkbox"> | |
| <label> | |
| <input type="checkbox"> Remember me | |
| </label> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <div class="col-sm-offset-2 col-sm-10"> | |
| <button type="submit" class="btn btn-default">Sign in</button> | |
| </div> | |
| </div> | |
| </form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment