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="form-group has-success"> | |
| <label class="control-label" for="inputSuccess">Input with success</label> | |
| <input type="text" class="form-control" id="inputSuccess"> | |
| </div> | |
| <div class="form-group has-warning"> | |
| <label class="control-label" for="inputWarning">Input with warning</label> | |
| <input type="text" class="form-control" id="inputWarning"> | |
| </div> | |
| <div class="form-group has-error"> | |
| <label class="control-label" for="inputError">Input with error</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
| <input class="form-control input-lg" type="text" placeholder=".input-lg"> | |
| <input class="form-control" type="text" placeholder="Default input"> | |
| <input class="form-control input-sm" type="text" placeholder=".input-sm"> | |
| <select class="form-control input-lg">...</select> | |
| <select class="form-control">...</select> | |
| <select class="form-control input-sm">...</select> |
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="row"> | |
| <div class="col-xs-2"> | |
| <input type="text" class="form-control" placeholder=".col-xs-2"> | |
| </div> | |
| <div class="col-xs-3"> | |
| <input type="text" class="form-control" placeholder=".col-xs-3"> | |
| </div> | |
| <div class="col-xs-4"> | |
| <input type="text" class="form-control" placeholder=".col-xs-4"> | |
| </div> |
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"> | |
| <input type="text" class="form-control"> | |
| <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span> | |
| </form> |
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="btn-toolbar" role="toolbar"> | |
| <div class="btn-group btn-group-lg"> | |
| <button type="button" class="btn btn-default">Left</button> | |
| <button type="button" class="btn btn-default">Middle</button> | |
| <button type="button" class="btn btn-default">Right</button> | |
| </div> | |
| </div> | |
| <div class="btn-toolbar" role="toolbar"> | |
| <div class="btn-group"> | |
| <button type="button" class="btn btn-default">Left</button> |
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="btn-group"> | |
| <button type="button" class="btn btn-default">1</button> | |
| <button type="button" class="btn btn-default">2</button> | |
| <div class="btn-group"> | |
| <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> | |
| Dropdown | |
| <span class="caret"></span> | |
| </button> | |
| <ul class="dropdown-menu"> |
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="btn-group-vertical"> | |
| <button type="button" class="btn btn-default">Button</button> | |
| <button type="button" class="btn btn-default">Button</button> | |
| <div class="btn-group"> | |
| <button id="btnGroupVerticalDrop1" type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> | |
| Dropdown | |
| <span class="caret"></span> | |
| </button> | |
| <ul class="dropdown-menu" role="menu" aria-labelledby="btnGroupVerticalDrop1"> | |
| <li><a href="#">Dropdown link</a></li> |