aboutsummaryrefslogtreecommitdiffstats
path: root/src/screens
diff options
context:
space:
mode:
Diffstat (limited to 'src/screens')
-rw-r--r--src/screens/Auth/LoginScreen.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/screens/Auth/LoginScreen.js b/src/screens/Auth/LoginScreen.js
index 6ced78d..c74fed4 100644
--- a/src/screens/Auth/LoginScreen.js
+++ b/src/screens/Auth/LoginScreen.js
@@ -21,6 +21,12 @@ const LoginScreen = ({ navigation }) => {
navigation.navigate('ForgotPassword');
};
+ const handleTesting = () => {
+ console.log("Navigating to Forgot Password");
+ // Navigate to the forgot password screen
+ navigation.navigate('MallSelection');
+ };
+
return (
<View style={styles.container}>
<Text style={styles.title}>Login</Text>
@@ -43,6 +49,7 @@ const LoginScreen = ({ navigation }) => {
<View style={styles.buttonContainer}>
<Button title="Register" onPress={handleRegister} />
<Button title="Forgot Password?" onPress={handleForgotPassword} />
+ <Button title="Testing" onPress={handleTesting} />
</View>
</View>
);