String? validateLoginPass(String value) { if (value.isEmpty) return "Please enter your password"; return null; }