issue # 로그인 화면 구현 중

This commit is contained in:
2025-11-10 23:33:35 +00:00
parent a51566ffae
commit c7ff6f8d13
2 changed files with 23 additions and 4 deletions

View File

@@ -3,6 +3,7 @@ import * as z from 'zod';
export const LoginSchema = z.object({
email: z
.email()
.min(1, "이메일을 입력해주십시오.")
, password: z
.string()
.min(8, "비밀번호는 8-12 자리여야 합니다.")