A colleague and I are discussing how to implement "Lost Password" feature on our company's proprietary web application.
We have already decided that to create an account there will be three required elements
1) Screen Name
2) Email Address (used for logging in)
1) Password (obviously, also used for logging in. Stored as one-way hash)
Once we have that info, the user attempting to sign up will be sent a verification email with a link and an activation key. To activate their account they will need to follow the link, enter the activation key, and re-enter their email and password. If everything matches then presto! A new user account is activated.
After the account is activated, lets say that the user forgets their password. We have two ideas for how to handle this situation.
Idea 1
- User clicks "Forgot Password"
- User is prompted for their account's email address
- If email matches active, non-closed account, then send a temporary password to the already validated email address
- User attempts to log in with temporary password
- If temporary password matches email address, prompt user to reset password. Prevent full login until temporary password is replaced.
Idea 2
This would require secret question and secret answer data to be collected during signup.
- User clicks "Forgot Password"
- User is prompted for email address and answer to secret question
- Upon validating both, user is then allowed to reset password
Concerns
One concern that we have is that (internal to our company) multiple employees would use a single login account. Some of us think that eliminates the secret question method as an option.
However, a password sent by email (temporary or not) would be vulnerable as email is not secure.
Question Summary
Considering internal operational constraints (multiple people to single login) which of these ideas would be the most secure and user-friendly option? Or, are neither adequate?
Edit
Could the stack overflow help me out by evaluating the answers? There are few opinions expressed below, but there isn't any indication from SO as to the answers' quality.