static bool isPasswordValid(String password) { if (password.length < 8) { return false; } return true; }