-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (51 loc) · 1.53 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h3> Sign up! </h3>
<input id = 'email' type="text" placeholder="Email">
<input id = 'password' type="password" placeholder="Password">
<br>
<button onclick="signup()"> Sign Up </button>
<br>
<br>
<br>
<button onclick="logout()"> Log Out </button>
<script>
function signup() {
var email = document.getElementById('email').value;
var password = document.getElementById('password').value;
firebase.auth().createUserWithEmailAndPassword(email, password).catch(function(error) {
// Handle Errors here.
var errorCode = error.code;
var errorMessage = error.message;
// ...
});
}
function logout() {
firebase.auth().signOut().then(function() {
// Sign-out successful.
alert('User has been logged out');
}, function(error) {
// An error happened.
});
}
</script>
<script src="https://www.gstatic.com/firebasejs/4.6.1/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyA8GJZsxf1ttwwXhlvaExRflVzp7-ai3_w",
authDomain: "lynbrookwebdev-a57b4.firebaseapp.com",
databaseURL: "https://lynbrookwebdev-a57b4.firebaseio.com",
projectId: "lynbrookwebdev-a57b4",
storageBucket: "lynbrookwebdev-a57b4.appspot.com",
messagingSenderId: "220843217577"
};
firebase.initializeApp(config);
</script>
</body>
</html>