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:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user