feat(auth): add password reset page component

- Add ResetPasswordPage with token validation from URL params
- Implement password confirmation validation
- Display success/error states with proper feedback
- Include accessible form labels and navigation buttons
- Export ResetPasswordPage from auth components index
This commit is contained in:
William Valentin
2025-10-16 13:15:25 -07:00
parent a183aca4d8
commit 25e25d92bc
2 changed files with 189 additions and 0 deletions

View File

@@ -2,3 +2,4 @@
export { default as AuthPage } from './AuthPage';
export { default as AvatarDropdown } from './AvatarDropdown';
export { default as ChangePasswordModal } from './ChangePasswordModal';
export { default as ResetPasswordPage } from './ResetPasswordPage';