'use client'; import { lusitana } from '@/app/ui/fonts'; import { AtSymbolIcon, KeyIcon, } from '@heroicons/react/24/outline'; import { ArrowRightIcon, ExclamationCircleIcon } from '@heroicons/react/20/solid'; import { Button } from './button'; import { useActionState } from "react"; import { authenticate } from "@/app/lib/actions"; export default function LoginForm() { const [errorMessage, formAction, isPending] = useActionState( authenticate, undefined, ); return (

계속하려면 로그인하세요.

개발용 서버입니다. 아래 계정 정보가 이미 입력되어 있으니 로그인 버튼만 클릭하세요.

테스트 계정:

Email: user@nextmail.com

Password: 123456

{errorMessage && ( <>

{errorMessage}

)}
); }