-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Password reset capability #208
Comments
The usual recovery procedure is also a possibility, whereby a verification code is delivered by email or text message. Upon submitting the correct code a user can supply a new password. |
There are two cases to reset the password:
@dstenger |
Second case should be less complex. So, we should implement this functionality. How is first case implemented? Don't we need a mail server to send emails to users? |
We need the following configuration of mail server:
Implemented first cases in the following way:
|
I have one more suggestion, maybe we have to add one more form update user details which will help user to update the information. This case applies to the existing user data that we have, if the user is registered in past and if he/she is not registered with the email then they are not able to reset his/her password. What do you think about this implementation? |
@keshav-nangare What is the status of this feature? One of our members (@jerstlouis) was asking about it today. |
A pull request has been created which has to be tested and merged (status: to verify). |
If a user forgets their login password there is currently no way to reset it (it cannot be recovered from the hash). On the login screen add an option to generate a new password. A generated password could be delivered using a variety of means:
* This option would be better if login were secured using TLS (https).
The text was updated successfully, but these errors were encountered: