You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add functionality to allow the recovery of a forgotten password.
Add action to controller to render a password recovery page if the request is GET. If the request is a POST, create a unique token associated with the user id or email and send an email to the user with a link to reset the password. The link will route to action 2 below
Add action to controller to allow the user to enter an new password if the token is valid. Destroy token when done.
Add the views for action 1 and 2 above
Add adapter to handle the creation, deletion and validation of tokens
Add options (token expiration, etc.)
I have already implemented this in my application. I will pull in a generalized version
The text was updated successfully, but these errors were encountered:
Add functionality to allow the recovery of a forgotten password.
I have already implemented this in my application. I will pull in a generalized version
The text was updated successfully, but these errors were encountered: