'use client'; import Link from 'next/link'; import { useActionState } from 'react'; import { forgotAction } from '@/lib/auth/actions'; import { idle } from '@/lib/auth/state'; import { Field, FormMessage, SubmitButton, TextInput } from '@/components/account/form'; export function ForgotForm() { const [state, action] = useActionState(forgotAction, idle); return (
Send reset code {state.ok ? (

Got the code?{' '} Enter it here

) : null} ); }