Conversation
🚀 Preview Deployment:
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR introduces a password reset feature that enables users to request a password reset link via email and set a new password. The implementation includes both the frontend UI components and backend email configuration.
Changes:
- Added password reset email functionality to the auth configuration
- Created new
/reset-passwordroute with support for both sending reset links and setting new passwords - Updated sign-in page to link to the new reset password flow
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
| src/lib/auth.ts | Added sendResetPassword callback to handle sending password reset emails |
| src/app/sign-in/page.tsx | Updated "Forgot password?" link to point to /reset-password and added type="button" to link buttons |
| src/app/reset-password/page.tsx | Main page component that conditionally renders either the reset link form or new password form based on token presence |
| src/app/reset-password/layout.tsx | Layout wrapper that protects the route by requiring users to be logged out |
| src/app/reset-password/SetNewPassword.tsx | Form component for users to enter and confirm their new password |
| src/app/reset-password/SendResetLink.tsx | Form component for users to request a password reset link via email |
| .github/workflows/pr_preview.yml | Added PR_NUM to environment variables for deployment workflow |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the password reset page. It can be found under /reset-password