import { useState } from 'react' import { Link, useNavigate } from 'react-router-dom' import { useAuthStore } from '../stores/auth.ts' import { api } from '../lib/api.ts' import { mockUser } from '../lib/mock-data.ts' import type { User } from '../types/api.ts' export function Login() { const [email, setEmail] = useState('') const [password, setPassword] = useState('') const [error, setError] = useState('') const [loading, setLoading] = useState(false) const navigate = useNavigate() const setAuth = useAuthStore((s) => s.setAuth) async function handleSubmit(e: React.FormEvent) { e.preventDefault() setError('') if (!email || !password) { setError('Please fill in all fields.') return } setLoading(true) try { const res = await api.post<{ user: User; token: string }>('/auth/login', { email, password }) setAuth(res.user, res.token) navigate('/') } catch { if (import.meta.env.VITE_MOCK_AUTH === 'true') { // Fallback to mock auth for demo setAuth(mockUser, 'mock-jwt-token') navigate('/') } else { setError('Invalid email or password. Please try again.') } } finally { setLoading(false) } } return (

CartSnitch

Track prices. Save money.

{error && (
{error}
)}
setEmail(e.target.value)} autoComplete="email" className="min-h-12 w-full rounded-xl border border-gray-200 px-4 text-base focus:border-brand-blue focus:outline-none focus:ring-1 focus:ring-brand-blue" /> setPassword(e.target.value)} autoComplete="current-password" className="min-h-12 w-full rounded-xl border border-gray-200 px-4 text-base focus:border-brand-blue focus:outline-none focus:ring-1 focus:ring-brand-blue" />
Forgot password?

Don't have an account?{' '} Sign up

) }