Reputation: 243
I have a change password form. See my code
<dl>
<dt style="width:150px;">Old Password </dt>
<dd><input name="frm_oldPwd" type="password" id="frm_oldPwd" /></dd>
</dl>
<dl>
<dt style="width:150px;">New Password</dt>
<dd><input name="fem_newPwd" type="password" value="" id="fem_newPwd" /></dd>
</dl>
<dl>
<dt style="width:150px;">Confirm Password </dt>
<dd><input name="frm_cPwd" type="password" value="" id="frm_cPwd" /></dd>
</dl>
<br class="cf" />
<br />
<dl>
<dt style="width:150px;"> </dt>
<dd><input type="submit" value="Update" name="frm_change" id="frm_changeP" /></dd>
</dl>
When I open this page there is a *
symbols in the old password field. I didn't enter anything there, then how it's appearing
I have cleared my browser cookie and history etc. But still it showing
Does anyone know how I remove this?
Upvotes: 0
Views: 94
Reputation: 3608
Try adding the attribute autocomplete=off
to your password field.
Upvotes: 0
Reputation: 15338
change it to text type to see what is the masked char:
<input name="frm_oldPwd" type="text" id="frm_oldPwd" />
Upvotes: 1