Reputation: 396
the password field in the html form i have created for my webpage is displayed some masked value which i believe is the password value that im using to connect to my database(same number of characters). But the problem is only for firefox: ie and chrome is displaying correctly. ive also tried setting the password value to null (""), it didnt help either. The variable name for sql password, post etc are different.
this is the code...
<div id="logincont">
<div id="loginfrm">
<form name="loginform" method="post" action="index.php">
<table class="logintable">
<tr>
<td width="70px"><span class="fonts"> Username</span></td><td><input type="text" name="user" id="userfield" /></td>
</tr>
<tr>
<td width="70px"><span class="fonts"> Password</span></td><td><input type="password" name="pass" id="passfield" /></td>
</tr>
<tr>
<td></td><td><input type="submit" name="submit" value="Submit" />
</td></tr></table>
</form>
</div>
</div>
n even after clearing the cache n cookies too, its showing the same thing..
Upvotes: 1
Views: 1975
Reputation: 8726
To remove saved passwords in FireFox, go to Tools -> Options, Security tab, click the Saved Passwords button, and remove the saved passwords that you want removed. Also, if you have browser toolbars or add-ons, some of them may save passwords and auto-fill them into forms. I think that the Google Toolbar does this as well, so you may need to look at the security options for that, in addition to the FireFox options.
Upvotes: 2