feat(01-07): update pages with password reset navigation and deep linking

- Updated login page to navigate to /reset-password instead of placeholder
- Added "Forgot Password?" link to signup page
- Enhanced reset password confirmation page to extract token/email from URL parameters
- Updated update password page to handle deep linking parameters
- Added deep linking support configuration in main.dart
- Improved router with URL parameter extraction helpers
This commit is contained in:
Dani B
2026-01-28 12:18:34 -05:00
parent 680ecdc0df
commit 53329c9eb8
5 changed files with 107 additions and 32 deletions

View File

@@ -186,13 +186,8 @@ class _LoginPageState extends State<LoginPage> {
}
void _handleForgotPassword() {
// TODO: Navigate to forgot password screen
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Forgot password feature coming soon'),
duration: Duration(seconds: 2),
),
);
// Navigate to password reset page
context.go('/reset-password');
}
void _handleSignUp() {