Firefox saving password for a 3-field password form in Firefox
Posted
by Chris
on Super User
See other posts from Super User
or by Chris
Published on 2010-05-14T15:05:50Z
Indexed on
2010/05/14
15:14 UTC
Read the original article
Hit count: 534
I've been requested to find a method of saving passwords on a form that uses three inputs, all set as type="password". It seems that Firefox will only save the password for the first password input. Here's the code foundation, which I simplified.
<FORM NAME = "PSWRD" ACTION="index.pgm" Method="POST" TARGET="frame">
<INPUT TYPE="PASSWORD" NAME="PASSWORD1" SIZE="5" MAXLENGTH="5">
<INPUT TYPE="PASSWORD" NAME="PASSWORD2" SIZE="10" MAXLENGTH="10">
<INPUT TYPE="PASSWORD" NAME="PASSWORD3" SIZE="10" MAXLENGTH="10">
<INPUT TYPE="submit" VALUE="ENTER">
</form>
© Super User or respective owner