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
| <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
| <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
| <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
| <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"> |
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"> | |
| <div class="form-group"> | |
| <label for="exampleInputEmail1">Email address</label> | |
| <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email"> | |
| </div> | |
| <div class="form-group"> | |
| <label for="exampleInputPassword1">Password</label> | |
| <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password"> | |
| </div> | |
| <div class="form-group"> |
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
| <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu3"> | |
| <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Regular link</a></li> | |
| <li role="presentation" class="disabled"><a role="menuitem" tabindex="-1" href="#">Disabled link</a></li> | |
| <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Another link</a></li> | |
| </ul> |
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
| <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu2"> | |
| <li role="presentation" class="dropdown-header">Dropdown header</li> | |
| ... | |
| <li role="presentation" class="divider"></li> | |
| <li role="presentation" class="dropdown-header">Dropdown header</li> | |
| ... | |
| </ul> |
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
| <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="dLabel"> | |
| ... | |
| </ul> |
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="dropdown"> | |
| <button class="btn dropdown-toggle sr-only" type="button" id="dropdownMenu1" data-toggle="dropdown"> | |
| Dropdown | |
| <span class="caret"></span> | |
| </button> | |
| <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1"> | |
| <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Action</a></li> | |
| <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Another action</a></li> | |
| <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Something else here</a></li> | |
| <li role="presentation" class="divider"></li> |