static bool isConfirmPasswordValid(String password, String confirmPassword) { if (password != confirmPassword) { return false; } return true; }