-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy pathemail.js
66 lines (62 loc) · 1.73 KB
/
email.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// These samples are intended for Web so this import would normally be
// done in HTML however using modules here is more convenient for
// ensuring sample correctness offline.
import firebase from "firebase/app";
import "firebase/auth";
function signInWithEmailPassword() {
var email = "test@example.com";
var password = "hunter2";
// [START auth_signin_password]
firebase.auth().signInWithEmailAndPassword(email, password)
.then((userCredential) => {
// Signed in
var user = userCredential.user;
// ...
})
.catch((error) => {
var errorCode = error.code;
var errorMessage = error.message;
});
// [END auth_signin_password]
}
function signUpWithEmailPassword() {
var email = "test@example.com";
var password = "hunter2";
// [START auth_signup_password]
firebase.auth().createUserWithEmailAndPassword(email, password)
.then((userCredential) => {
// Signed in
var user = userCredential.user;
// ...
})
.catch((error) => {
var errorCode = error.code;
var errorMessage = error.message;
// ..
});
// [END auth_signup_password]
}
function sendEmailVerification() {
// [START auth_send_email_verification]
firebase.auth().currentUser.sendEmailVerification()
.then(() => {
// Email verification sent!
// ...
});
// [END auth_send_email_verification]
}
function sendPasswordReset() {
const email = "sam@example.com";
// [START auth_send_password_reset]
firebase.auth().sendPasswordResetEmail(email)
.then(() => {
// Password reset email sent!
// ..
})
.catch((error) => {
var errorCode = error.code;
var errorMessage = error.message;
// ..
});
// [END auth_send_password_reset]
}