Last active
December 8, 2015 13:55
-
-
Save leofmds/6bc4e08aa2e3316d9ff7 to your computer and use it in GitHub Desktop.
Adding icon on "native" bootstrap 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
| <div class="form-group has-feedback"> | |
| <input type="text" value="" class="form-control"> | |
| <i class="form-control-feedback glyphicon glyphicon-user"></i> | |
| </div> | |
| <div class="form-group has-feedback has-success"> | |
| <input type="text" value="" class="form-control"> | |
| <i class="form-control-feedback fa fa-user"></i> | |
| </div> | |
| <div class="form-group has-feedback has-error"> | |
| <input type="text" value="" class="form-control"> | |
| <i class="form-control-feedback fa fa-spinner fa-pulse"></i> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment