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"> |
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
| <input type="text" class="form-control" placeholder="Text input"> |
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
| <textarea class="form-control" rows="3"></textarea> |
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
| <div class="checkbox"> | |
| <label> | |
| <input type="checkbox" value=""> | |
| Option one is this and that—be sure to include why it's great | |
| </label> | |
| </div> | |
| <div class="radio"> | |
| <label> | |
| <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked> |
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
| <label class="checkbox-inline"> | |
| <input type="checkbox" id="inlineCheckbox1" value="option1"> 1 | |
| </label> | |
| <label class="checkbox-inline"> | |
| <input type="checkbox" id="inlineCheckbox2" value="option2"> 2 | |
| </label> | |
| <label class="checkbox-inline"> | |
| <input type="checkbox" id="inlineCheckbox3" value="option3"> 3 | |
| </label> |
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
| <select class="form-control"> | |
| <option>1</option> | |
| <option>2</option> | |
| <option>3</option> | |
| <option>4</option> | |
| <option>5</option> | |
| </select> | |
| <select multiple class="form-control"> | |
| <option>1</option> |
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 class="col-sm-2 control-label">Email</label> | |
| <div class="col-sm-10"> | |
| <p class="form-control-static">email@example.com</p> | |
| </div> | |
| </div> | |
| <div class="form-group"> | |
| <label for="inputPassword" class="col-sm-2 control-label">Password</label> | |
| <div class="col-sm-10"> |
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
| <input class="form-control" id="focusedInput" type="text" value="This is focused..."> |
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
| <input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here..." disabled> |
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 role="form"> | |
| <fieldset disabled> | |
| <div class="form-group"> | |
| <label for="disabledTextInput">Disabled input</label> | |
| <input type="text" id="disabledTextInput" class="form-control" placeholder="Disabled input"> | |
| </div> | |
| <div class="form-group"> | |
| <label for="disabledSelect">Disabled select menu</label> | |
| <select id="disabledSelect" class="form-control"> | |
| <option>Disabled select</option> |