Files
rxminder/components/auth/index.ts
William Valentin 25e25d92bc 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
2025-10-16 13:15:25 -07:00

6 lines
281 B
TypeScript

// Authentication Components
export { default as AuthPage } from './AuthPage';
export { default as AvatarDropdown } from './AvatarDropdown';
export { default as ChangePasswordModal } from './ChangePasswordModal';
export { default as ResetPasswordPage } from './ResetPasswordPage';