I'm skeptical of such articles, but this one had a lot of good advice. I so hate country selection popups that have 200 countries in them, and United States is near the bottom even though 95% of their customers are in the US, or perhaps they don't even ship outside the US. So many sites do that and it is infuriating.
This kind of thing is the curse of using off the shelf e-commerce packages. You can easily avoid these kind of mistakes if you roll your own.
Techniques To Simplify Sign-Ups and Log-Ins
51–60 of 178 posts
Re: Techniques To Simplify Sign-Ups and Log-Ins
#52I'm not quite sure about a checkbox to confirm password...maybe I need to see it actually implemented somewhere to know if I like it.
Re: Techniques To Simplify Sign-Ups and Log-Ins
#53These are all great suggestions. Smashingmagazine is a great resource for developers. I'm not quite sure about a checkbox to confirm password...maybe I need to see it actually implemented somewhere to know if I like it.
Not sure I love the idea, because there will be certain situations when a user can't use it, but it's worth considering...
Re: Techniques To Simplify Sign-Ups and Log-Ins
#54"Use a Question Mark Icon for the Password Recovery Link" Am I the only one who thinks that is really unintuitive? I don't even think clicking on that icon would cross my mind as a user, and I would spend my time trying to find the "Forgot Password" link.
Re: Techniques To Simplify Sign-Ups and Log-Ins
#55Earlier quoted context omitted.
This kind of thing is the curse of using off the shelf e-commerce packages. You can easily avoid these kind of mistakes if you roll your own.
Then why does Skype do it for every out-going phone call? I have to select US from the drop down list every time I make a call even though my Skype number is US based.
Re: Techniques To Simplify Sign-Ups and Log-Ins
#56Earlier quoted context omitted.
i think its done to prevent brute force attacks on passwords. If someone knows that username was correct and password wasn't, he knows something! That's why the message 'username or password does not match' and that's why both the fields needs to be empty when page loads with error.
Depends on whether the login username is public or not. If you're on a community based site where others can see your username, there's no reason to hide it. Anybody trying to brute force your password is probably specifically targeting your account. On the other hand, if you're on a service where other people cannot see your username, it would indeed be better to return a 'username or password does not match' error.
Re: Techniques To Simplify Sign-Ups and Log-Ins
#57Does anybody else think unmasking the password field is a terrible idea?
Re: Techniques To Simplify Sign-Ups and Log-Ins
#58Using OpenID makes the rest of the techniques moot (except for OpenID providers), right?
I think OpenID has proven to be uneffective, some (HN popular) sites have removed it again (37signals? not sure). I have problems with OpenID, too, because I tend to be unable to remember which OpenID login I used for a site.
Re: Techniques To Simplify Sign-Ups and Log-Ins
#59Does anybody else think unmasking the password field is a terrible idea?
It should nonetheless be noted that many browsers cache values entered in non-password fields, so if someone is using a shared computer to register, the next person might only have to double-click on the non-hidden password field to see a list of previously entered passwords. Not so good.
Re: Techniques To Simplify Sign-Ups and Log-Ins
#60These are all great suggestions. Smashingmagazine is a great resource for developers. I'm not quite sure about a checkbox to confirm password...maybe I need to see it actually implemented somewhere to know if I like it.