Login / Signup page markup breaks 1Password
Hi,
I'm really liking gitlab.com so far as an alternative to the usual suspects, but there is one issue that is pretty annoying. I can't easily use 1Password to login, actually no one can use 1Password to login.
The issue is that on https://gitlab.com/users/sign_in both the 'Sign In' and 'Sign Up' forms share too much markup. Both forms use the same ID, which is in and of itself a no-no the forms also share the same name for the password field (specifically user[password]
).
It should be pretty trivial to give each form a unique ID and to adjust the form field names to be entirely unique between the forms. For example, I would suggest a naming convention of login[username]
, login[password]
vs signup[username]
and signup[password]
to ensure password managers like 1Password don't become an annoyance to your users.