export const PASSWORD_MIN_LENGTH = 8; export const PASSWORD_MAX_LENGTH = 128; export const VALIDATION_MESSAGE_PASSWORD = "The password must be between 8 and 128 characters."; export const VALIDATION_MESSAGE_EMAIL = "You must enter a valid email address."; export const VALIDATION_MESSAGE_REQUIRED = "This field is required."; export const VALIDATION_MESSAGE_PASSWORDS_MATCH = "The passwords must match.";