GNOME Bugzilla – Bug 703870
Doesn't remember password on sites with multiple text forms
Last modified: 2017-08-26 09:44:44 UTC
https://secure.fnac.com/Account/Profil/Default.aspx#bl=head doesn't seem to offer saving the password I type, because there are unrelated text entries in the page.
Yes, ephy will only offer to save the password if there is one text input form other than the password one. We would need some heuristic way to determine the right one when there are others.
(In reply to Bastien Nocera from comment #0) > https://secure.fnac.com/Account/Profil/Default.aspx#bl=head doesn't seem to > offer saving the password I type, because there are unrelated text entries > in the page. It does now, but I'm not sure if this is due to changes in Epiphany or changes on that website.
The heuristic in master (going into 3.25.92) is copied from Firefox and is much better at handling forms with multiple input elements in addition to the password input. I did a quick test to check if having extra text input elements in other forms could cause problems: <html> <body> <form id="aForm"> <input type="text" name="username" placeholder="Username" /> <br /> <input type="password" name="passwd" placeholder="Password" /> <input type="submit"/> </form> <form> <input type="text" value="You win again, gravity!"/> </form> </body> </html> And that is working fine. Are we aware of any more websites with multiple text forms that are problematic? Note: bug #742573 is still outstanding, but that is a different issue.
It does offer to save now though the website has changed. The left hand-side was for existing accounts, right hand-side for new accounts and had a field for the email address for that new account. Let's say this bug is obsolete, and I'll file a new one if I find another site with that problem. Thanks!