Files
nextjs/app/login/schema.tsx
2024-12-16 13:30:44 +05:30

10 lines
291 B
TypeScript

import * as yup from "yup";
// Validation Schema with Yup
export const schema = yup.object({
username: yup.string().required("Username is required"),
password: yup
.string()
.min(6, "Password must be at least 6 characters")
.required("Password is required"),
});