import React, { useState } from 'react'; import { View, Text, TextInput, Button, StyleSheet, Alert } from 'react-native'; const ForgotPasswordScreen = ({ navigation }) => { const [email, setEmail] = useState(''); const handleForgotPassword = () => { // Handle forgot password logic here (e.g., send reset link) Alert.alert("Reset Password", "Check your email for password reset instructions."); }; return ( Forgot Password