asp.net mvc - glyphicon-lock is not showing -


i'm working on asp.net mvc web application, , i'm using bootstrap 3.

i have following markup inside login view show username , password:

<fieldset>   <div class="input-group input-group-lg">     <span class="input-group-addon">       <i class="glyphicon glyphicon-user blue"></i>     </span>     <input type="text" class="form-control" placeholder="username" name="username" value="@model.username">   </div>   <div class="clearfix"></div><br>    <div class="input-group input-group-lg">     <span class="input-group-addon">       <i class="glyphicon glyphicon-lock blue"></i>     </span>     <input type="password" class="form-control" placeholder="password" name="password">   </div>   <div class="clearfix"></div>    <p class="center col-md-5">     <button type="submit" class="btn btn-primary">login</button>   </p> </fieldset> 

however, glyphicon-lock inside password field not showing on ie, ff, or safari:

screenshot of ie , ff


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -