From 450235655c52795f9d4ff78c7dd63018a857961f Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Wed, 16 Oct 2024 17:59:39 +0530 Subject: Add the register/signup with forget password options --- src/screens/Auth/LoginScreen.js | 90 ++++++++++++++++++++++++++++------------- 1 file changed, 61 insertions(+), 29 deletions(-) diff --git a/src/screens/Auth/LoginScreen.js b/src/screens/Auth/LoginScreen.js index 6b11a5b..f7ef695 100644 --- a/src/screens/Auth/LoginScreen.js +++ b/src/screens/Auth/LoginScreen.js @@ -1,45 +1,77 @@ import React, { useState } from 'react'; -import { View, TextInput, Button, Text } from 'react-native'; -import { login, verifyOtp } from '../../services/authService'; +import { View, Text, TextInput, Button, StyleSheet, Alert } from 'react-native'; const LoginScreen = ({ navigation }) => { const [email, setEmail] = useState(''); const [password, setPassword] = useState(''); - const [otp, setOtp] = useState(''); - const [isOtpSent, setIsOtpSent] = useState(false); - - const handleLogin = async () => { - try { - const response = await login(email, password); - if (response.data.otpSent) setIsOtpSent(true); - } catch (error) { - console.error('Login error:', error); - } + + const handleLogin = () => { + // Handle login logic here + Alert.alert("Login", "Login button pressed"); + }; + + const handleRegister = () => { + // Navigate to the Signup screen + navigation.navigate('Signup'); }; - const verifyOtp = async () => { - try { - const response = await verifyOtp(email, otp); - if (response.data.success) navigation.navigate('MallSelection'); - } catch (error) { - console.error('OTP verification error:', error); - } + const handleForgotPassword = () => { + // Navigate to the forgot password screen + navigation.navigate('ForgotPassword'); }; return ( - - - + + Login + +