Skip to content

Instantly share code, notes, and snippets.

@Serhansolo
Last active March 31, 2020 14:28
Show Gist options
  • Save Serhansolo/29c98f9b4bb1c85b52b505a556a25224 to your computer and use it in GitHub Desktop.
Save Serhansolo/29c98f9b4bb1c85b52b505a556a25224 to your computer and use it in GitHub Desktop.
signUp() {
firebase
.auth()
.createUserWithEmailAndPassword(this.email, this.password)
.then(response => {
console.log("Success! ", response);
})
.catch(error => {
console.log("Failed!", error);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment