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
User should be able to reset their password if forgotten. The entire process of resetting a user password would include going them clicking on "Forgot Password," entering their email in the forgot-password page, receiving an email with a password reset link, and then resetting their password in the reset-password page.
During this task, we will be implementing the entire process minus any email integration as that can be done in a future issue. For now, any time we need to send an email, we can log the email contents in the console and allow us developers to use the password-reset link or anything else we need from the email.
Task Outline
Initialize simple forgot-password and reset-password pages, no need for any styles
Create simplified form components for each feature
Implement API routes for each feature
Refer to the login and register routes to ensure consistent data is being sent to the frontend during all scenarios
Send any necessary error messages to the client, do not worry about displaying/styling the end-user experience
Create Zod schemas for both forms, forgot-password and reset-password
Ensure that the new password is being hashed and stored properly in the database
Have fun
The text was updated successfully, but these errors were encountered:
Description
User should be able to reset their password if forgotten. The entire process of resetting a user password would include going them clicking on "Forgot Password," entering their email in the
forgot-password
page, receiving an email with a password reset link, and then resetting their password in thereset-password
page.During this task, we will be implementing the entire process minus any email integration as that can be done in a future issue. For now, any time we need to send an email, we can log the email contents in the console and allow us developers to use the password-reset link or anything else we need from the email.
Task Outline
forgot-password
andreset-password
pages, no need for any stylesforgot-password
andreset-password
The text was updated successfully, but these errors were encountered: