"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 { useState } from "react"; export function ForgotPasswordForm({ className, ...props }: React.ComponentPropsWithoutRef<"div">) { const [email, setEmail] = useState(""); const [error, setError] = useState(null); const [success, setSuccess] = useState(false); const [isLoading, setIsLoading] = useState(false); const handleForgotPassword = async (e: React.FormEvent) => { e.preventDefault(); const supabase = createClient(); setIsLoading(true); setError(null); try { // The url which will be included in the email. This URL needs to be configured in your redirect URLs in the Supabase dashboard at https://supabase.com/dashboard/project/_/auth/url-configuration const { error } = await supabase.auth.resetPasswordForEmail(email, { redirectTo: `${window.location.origin}/auth/update-password`, }); if (error) throw error; setSuccess(true); } catch (error: unknown) { setError(error instanceof Error ? error.message : "An error occurred"); } finally { setIsLoading(false); } }; return (
{success ? ( Check Your Email Password reset instructions sent

If you registered using your email and password, you will receive a password reset email.

) : ( Reset Your Password Type in your email and we'll send you a link to reset your password
setEmail(e.target.value)} />
{error &&

{error}

}
Already have an account?{" "} Login
)}
); }