From my experience of building web applications only two pieces of information are EVER required at registration time: 1). Email address - unlikely to be forgotten and is useful, ie you can then contact the user 2). Password - so the user can access the site. And I agree, dont ask twice for this, as long as you have a password reset feature. Any further information can be obtained once the user is inside the system -…
Techniques To Simplify Sign-Ups and Log-Ins
151–160 of 178 posts
Re: Techniques To Simplify Sign-Ups and Log-Ins
#152Earlier quoted context omitted.
The problem with the likes of friend.ly is that it forces me to use the email address associated with Facebook and it's PITA if you use multiple email accounts / filters for multiple purposes
The problem is nothing is editable (full name, birthday, location, email -- ok, they can have gender). If I'm signing up for some brand-new, unknown service, I'm usually not inclined to divulge anything more than an email address with an alias (+newsite@gmail.com).
Re: Techniques To Simplify Sign-Ups and Log-Ins
#153 Require Users to Type Their Password Only Once
At least I am very likely to overlook a typo, but less so to make the same typo twice. Allow Users to Auto-Fill Their Payment Address From the Shipping Address
Why not make a check box "same as billing address"? That way if people make a mistake they only have to correct it once. Don’t Check the Newsletter Option by Default. Offer a Preview Instead
And how many people will click on that preview ? Spambots can’t fill in the field because they can’t interact with objects in client-side JavaScript
sure Allow Users to Unmask Their Password
If I saw this I really would have no idea what the checkbox "check password" does. Make the “Submit” Button as Wide as the Text Fields
Never had problems with being insecure which action I was about to take when I logged into facebook. Allow Users to Log in Via Facebook, Twitter or OpenID
I don't have twitter, OpenID confuses me and I hate websites where I have to login with facebook.But don't get me wrong I still think it's good to think about this stuff and don't take everything for granted, just because everyone does it. From that perspective it is a great post.
Re: Techniques To Simplify Sign-Ups and Log-Ins
#154I just ask for an email address. I then email an auto generated password to the user. Their first login with the password I sent creates the account and takes them to their profile page which allows them to change their password or fill in other non essential info. This system has a few benefits: * No annoying "username already taken" or "password too short" rejections that make people give up. * No junk accounts tha…
Re: Techniques To Simplify Sign-Ups and Log-Ins
#155Re: Techniques To Simplify Sign-Ups and Log-Ins
#156> use a hidden and required text field generated with client-side Javascript So now only users with Javascript enabled can use your website. I'm sure that will increase conversion. > Spambots can’t fill in the field because they can’t interact with objects in client-side JavaScript; only users can. Not true anymore. > you can create a honeypot form field that should be left blank and then use CSS to hide it from huma…
Is not having JavaScript really a problem? I never even consider it anymore.
Re: Techniques To Simplify Sign-Ups and Log-Ins
#157Another thing that I'll start to experiment with is delayed confirmations. The confirmation step via emails is one of those things that has been copied over and over, without knowing, in many cases, what problem it addresses in the first place and if it's crucial to one's particular situations. I think having to interrupt your visit to log into your email, is another speed bump to a smooth registration process. A bet…
But I agree that new users having to leave the site to check their e-mail is a hurdle to get over.
Re: Techniques To Simplify Sign-Ups and Log-Ins
#158Earlier quoted context omitted.
If someone has access to your email client you're hooped anyway. There is nothing stopping an extra security conscious user from deleting the email and changing their password right away. What it does is to give a convenience to users that want to treat your service as a trial. Picking unique user names and password is too far down the developing a relationship path for me personally.
Against knowledgeable techies, sure, you're hosed either way. I'm talking about more casual security threats: a mischievous child, a bad breakup, a sneaky Best Buy bench tech. It's the difference between leaving your front door unlocked, versus leaving it wide open.
Re: Techniques To Simplify Sign-Ups and Log-Ins
#159Earlier quoted context omitted.
The way that I've always handled this is to only show the "Forgot Password" link after a login attempt fails. Maybe that's unfair; expecting a user to attempt to login even if they're not sure of their details, but it always seemed reasonable enough to me.
That's not intuitive. When I go to a site I know if I remember the password or not. If I have no clue what the password could be I won't even attempt to login. If I don't see the "forgot password" link I would assume the site doesn't have that feature and leave.
Re: Techniques To Simplify Sign-Ups and Log-Ins
#160Not sure if it was accidental or not, but we ended up with the single simplest sign-up/login I've ever seen. We've even received a few emails from users alarmed at how simple it is. We're considering adding a few artificial steps (like filling out a profile) so that users feel more like they are creating an account. 1. Click login 2. Choose account provider 3. Grant us authorization access 4. Done - we pull your name…
We did that for an app, and let people pick from Google, Twitter, or Yahoo. They'd sometimes forget which one they'd chosen (like after being away from a bit or clearing the cache), and then login with a different one and get confused as to why their data was missing. Do you encounter that at all with your users?
No idea what the solution to this problem is, but I suspect it isn't going away.