public void AuthCreateButton() { if (AuthCreateEmail.text != "" && AuthCreatePassword.text != "" && AuthCreateName.text != "" && AuthCreateToken.text != "") { if (AuthCreatePassword.text.Length >= 5) { FirebaseController.CreateAuth(AuthCreateEmail.text, AuthCreatePassword.text, AuthCreateName.text); } else { System.SystemInterface.Alert("Senha com mínimo de 6 digítos"); } } else { System.SystemInterface.Alert("Preencha todos os dados"); } }