Skip to content

Instantly share code, notes, and snippets.

@kashfifahim
Created May 17, 2018 19:46
Show Gist options
  • Save kashfifahim/53cc12b9212febbf2b63124781f67b18 to your computer and use it in GitHub Desktop.
Save kashfifahim/53cc12b9212febbf2b63124781f67b18 to your computer and use it in GitHub Desktop.
Auth.auth().createUser(withEmail: emailTextfield.text!, password: passwordTextfield.text!) { (user, error) in
if error != nil {
print(error!)
} else {
print("Registration Successful!")
SVProgressHUD.dismiss()
self.performSegue(withIdentifier: "goToChat", sender: self)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment