Spaces:
Running
Running
| import { useState } from 'react'; | |
| import { useNavigate, Link, useSearchParams } from 'react-router-dom'; | |
| import { useAuthStore } from '../../store/authStore'; | |
| import { Blocks, Eye, EyeOff, Mail, Lock } from 'lucide-react'; | |
| import GoogleButton from './GoogleButton'; | |
| export default function LoginForm() { | |
| const [searchParams] = useSearchParams(); | |
| const [email, setEmail] = useState(''); | |
| const [password, setPassword] = useState(''); | |
| const [showPassword, setShowPassword] = useState(false); | |
| const { login, loading, error, clearError } = useAuthStore(); | |
| const navigate = useNavigate(); | |
| const urlError = searchParams.get('error'); | |
| const handleSubmit = async (e: React.FormEvent) => { | |
| e.preventDefault(); | |
| try { | |
| await login(email, password); | |
| navigate('/dashboard'); | |
| } catch {} | |
| }; | |
| return ( | |
| <div className="min-h-screen flex items-center justify-center bg-surface-950 p-4"> | |
| <div className="w-full max-w-md"> | |
| <div className="text-center mb-8"> | |
| <div className="flex items-center justify-center gap-2 mb-4"> | |
| <Blocks className="w-10 h-10 text-primary-500" /> | |
| <span className="text-3xl font-bold text-white">RealBlocks</span> | |
| </div> | |
| <p className="text-surface-400">Sign in to your account</p> | |
| </div> | |
| <form onSubmit={handleSubmit} className="card space-y-4"> | |
| {(error || urlError) && ( | |
| <div className="bg-red-500/10 border border-red-500/30 text-red-400 px-4 py-2 rounded-lg text-sm"> | |
| {error || (urlError === 'google-auth-failed' ? 'Google sign in failed. Please try again.' : urlError)} | |
| </div> | |
| )} | |
| <div> | |
| <label className="block text-sm text-surface-300 mb-1">Email</label> | |
| <div className="relative"> | |
| <Mail className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-surface-400" /> | |
| <input | |
| type="email" | |
| value={email} | |
| onChange={(e) => { setEmail(e.target.value); clearError(); }} | |
| className="input pl-10" | |
| placeholder="you@example.com" | |
| required | |
| /> | |
| </div> | |
| </div> | |
| <div> | |
| <label className="block text-sm text-surface-300 mb-1">Password</label> | |
| <div className="relative"> | |
| <Lock className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-surface-400" /> | |
| <input | |
| type={showPassword ? 'text' : 'password'} | |
| value={password} | |
| onChange={(e) => { setPassword(e.target.value); clearError(); }} | |
| className="input pl-10 pr-10" | |
| placeholder="••••••••" | |
| required | |
| /> | |
| <button | |
| type="button" | |
| onClick={() => setShowPassword(!showPassword)} | |
| className="absolute right-3 top-1/2 -translate-y-1/2 text-surface-400 hover:text-white" | |
| > | |
| {showPassword ? <EyeOff className="w-4 h-4" /> : <Eye className="w-4 h-4" />} | |
| </button> | |
| </div> | |
| </div> | |
| <div className="flex justify-end"> | |
| <Link to="/forgot-password" className="text-sm text-primary-400 hover:text-primary-300"> | |
| Forgot password? | |
| </Link> | |
| </div> | |
| <button type="submit" disabled={loading} className="btn-primary w-full"> | |
| {loading ? 'Signing in...' : 'Sign In'} | |
| </button> | |
| <div className="relative"> | |
| <div className="absolute inset-0 flex items-center"> | |
| <div className="w-full border-t border-surface-700" /> | |
| </div> | |
| <div className="relative flex justify-center text-xs"> | |
| <span className="bg-surface-800 px-2 text-surface-400">or continue with</span> | |
| </div> | |
| </div> | |
| <GoogleButton label="Sign in with Google" /> | |
| <p className="text-center text-sm text-surface-400"> | |
| Don't have an account?{' '} | |
| <Link to="/register" className="text-primary-400 hover:text-primary-300"> | |
| Create one | |
| </Link> | |
| </p> | |
| </form> | |
| </div> | |
| </div> | |
| ); | |
| } | |