issue #33
Some checks failed
Test CI / build (push) Failing after 12s

- 로그인 화면 기능 로직 1차 구현 중
This commit is contained in:
2025-11-30 01:42:26 +09:00
parent 6943d3d6ab
commit de8381f094
25 changed files with 521 additions and 117 deletions

View File

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