// Unused method async void SignUp() { string email = EmailField.text; string password = PasswordField.text; bool result = await firebase.SignUp(email, password); Debug.Log(result); if (result) { LoginNotification.text = "Account created successfully!"; } else { LoginNotification.text = "An error has occurred. Please try again."; } }