feat(auth): Story 2.4 - Password Reset Flow#3
Merged
BradleyFestraets merged 1 commit intomainfrom Nov 30, 2025
Merged
Conversation
Implements complete password reset flow with email delivery: Email Infrastructure: - Created PasswordResetEmail template using React Email - Added sendPasswordResetEmail function to email service - Professional email design with reset link and expiry notice Backend Updates: - Updated auth.requestPasswordReset to send actual emails via Resend - Graceful error handling (still returns success to prevent enumeration) - Logging for successful email sends UI Enhancements: - Upgraded forgot-password page with Card layout and shadcn/ui components - Added success state showing 'Check Your Email' confirmation - Upgraded reset-password page with Card layout and validation hints - Added success state with redirect to login after reset - Password requirements displayed to users Acceptance Criteria Met: 'Forgot Password?' link on login page (from Story 2.3) Password reset request page collects email Secure reset token generated (UUID, 1-hour expiry) Reset email sent with link containing token Reset link leads to new password form Token validated before password change Password updates and token invalidated Story-2.4
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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.
Summary
Implements complete password reset flow with email delivery for Story 2.4 of Epic 2.
Changes
Email Infrastructure
Backend Updates
UI Enhancements
Forgot Password Page:
Reset Password Page:
Acceptance Criteria
Testing
Files Changed
Story: 2.4 - Password Reset Flow
Epic: 2 - Venue Management & User Onboarding