Spaces:
Runtime error
Runtime error
File size: 649 Bytes
4782147 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import { z } from "zod";
export const passwordRegexPattern =
process.env.NEXT_PUBLIC_PASSWORD_REGEX_PATTERN ||
"^(?=.*[a-zA-Z])(?=.*\\d)[a-zA-Z\\d!@#$%^&*()_+\\-=\\[\\]{};':\"\\\\|,.<>\\/?]{8,20}$";
export const passwordRequirementsText =
process.env.NEXT_PUBLIC_PASSWORD_REQUIREMENTS_TEXT ||
"Password must be 8-20 characters and contain at least one letter and one number.";
// Shared password validation schema
export const passwordSchema = z
.string()
.min(8, "Password must be at least 8 characters long.")
.max(20, "Password cannot exceed 20 characters.")
.regex(new RegExp(passwordRegexPattern), passwordRequirementsText);
|