Firefox saving password for a 3-field password form in Firefox
- by Chris
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>