Last active
August 29, 2015 14:08
-
-
Save t-min/a5bd440b50b9a4c1452a to your computer and use it in GitHub Desktop.
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"> | |
| <fieldset> | |
| <legend>Legend</legend> | |
| <div class="form-group"> | |
| <label for="inputEmail" class="col-lg-2 control-label">Email</label> | |
| <div class="col-lg-10"> | |
| <input type="text" class="form-control" id="inputEmail" placeholder="Email"> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <label for="inputPassword" class="col-lg-2 control-label">Password</label> | |
| <div class="col-lg-10"> | |
| <input type="password" class="form-control" id="inputPassword" placeholder="Password"> | |
| <div class="checkbox"> | |
| <label> | |
| <input type="checkbox"> Checkbox | |
| </label> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <label for="textArea" class="col-lg-2 control-label">Textarea</label> | |
| <div class="col-lg-10"> | |
| <textarea class="form-control" rows="3" id="textArea"></textarea> | |
| <span class="help-block">A longer block of help text that breaks onto a new line and may extend beyond one line.</span> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <label class="col-lg-2 control-label">Radios</label> | |
| <div class="col-lg-10"> | |
| <div class="radio"> | |
| <label> | |
| <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked=""> | |
| Option one is this | |
| </label> | |
| </div> | |
| <div class="radio"> | |
| <label> | |
| <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2"> | |
| Option two can be something else | |
| </label> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <label for="select" class="col-lg-2 control-label">Selects</label> | |
| <div class="col-lg-10"> | |
| <select class="form-control" id="select"> | |
| <option>1</option> | |
| <option>2</option> | |
| <option>3</option> | |
| <option>4</option> | |
| <option>5</option> | |
| </select> | |
| <br> | |
| <select multiple="" class="form-control"> | |
| <option>1</option> | |
| <option>2</option> | |
| <option>3</option> | |
| <option>4</option> | |
| <option>5</option> | |
| </select> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <div class="col-lg-10 col-lg-offset-2"> | |
| <button class="btn btn-default">Cancel</button> | |
| <button type="submit" class="btn btn-primary">Submit</button> | |
| </div> | |
| </div> | |
| </fieldset> | |
| </form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment