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

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

gcc - MinGW's ld cannot perform PE operations on non PE output file -

c# - Search and Add Comment with OpenXML for Word -