Theo-flux
Results
1
comments of
Theo-flux
``` const lowerCaseRegex = /(?=.*[a-z])\w+/; const upperCaseRegex = /(?=.*[A-Z])\w+/; const numberRegex = /\d/; const specialCharcterRegex = /[`!@#$%^&*()_+\-=[\]{};':"\\|,./?~]/; password: z .string({ required_error: 'Password is required' }) .min(8, { message: 'Must be...