import React, { useState } from 'react'; import { View, TextInput, Button, Text } from 'react-native'; import { resetPassword } from '../../services/authService'; import emailService from '../../services/emailService'; const SignupScreen = ({ navigation }) => { const [email, setEmail] = useState(''); const [password, setPassword] = useState(''); const handleSignup = async () => { // Implement user creation logic here or call the backend try { // Trigger OTP email using custom email service await emailService.sendOtp(email); alert('OTP sent to your email'); navigation.navigate('Login'); } catch (error) { console.error('Signup error:', error); } }; return (