function validatePasswordLength(value: string, _allValues: SignupFormValues, props: SignupFormProps) {
    if (value.length < props.minimumPasswordLength || value.length > props.maximumPasswordLength) {
        return props.passwordLengthErrorLabel;
    }
    return undefined;