"use client"; import { cn } from "@/lib/utils"; import { createClient } from "@/lib/supabase/client"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import Link from "next/link"; import { useRouter } from "next/navigation"; import { useState } from "react"; export function LoginForm({ className, ...props }: React.ComponentPropsWithoutRef<"div">) { const [email, setEmail] = useState(""); const [password, setPassword] = useState(""); const [error, setError] = useState(null); const [isLoading, setIsLoading] = useState(false); const router = useRouter(); const handleLogin = async (e: React.FormEvent) => { e.preventDefault(); const supabase = createClient(); setIsLoading(true); setError(null); try { const { error } = await supabase.auth.signInWithPassword({ email, password, }); if (error) throw error; // Update this route to redirect to an authenticated route. The user already has an active session. router.push("/protected"); } catch (error: unknown) { setError(error instanceof Error ? error.message : "An error occurred"); } finally { setIsLoading(false); } }; return (
Login Enter your email below to login to your account
setEmail(e.target.value)} />
Forgot your password?
setPassword(e.target.value)} />
{error &&

{error}

}
Don't have an account?{" "} Sign up
); }