-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
71 lines (59 loc) · 1.67 KB
/
main.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
67
68
69
70
71
'use strict';
$(document).ready(init)
var ref = new Firebase('https://fireinthebasement.firebaseio.com/')
var $newEmail;
var $newPassword;
function init() {
$('#clickCreate').click(newUser)
$('#loginB').click(loginUser)
$('.login').animate({opacity:1})
$('.newUser').animate({opacity:1})
}
function loginUser() {
var loginEmail = $('#emailLogin').val();
var loginPassword = $('#passwordLogin').val();
$('#emailLogin').val('')
$('#passwordLogin').val('')
ref.authWithPassword({
"email": loginEmail,
"password": loginPassword,
}, function(error, authData) {
if (error) {
console.log("Login Failed!", error);
} else {
console.log("Authenticated successfully with payload:", authData);
$('.login').animate({opacity:0})
$('.newUser').animate({opacity:0})
window.location = './userhome.html'
}
});
loginEmail = ''
loginPassword = ''
}
function newUser() {
var newEmail = $('#newEmail').val()
var newPassword = $('#newPassword').val()
$('#newEmail').val('')
$('#newPassword').val('')
ref.createUser({
email: newEmail,
password: newPassword
}, function(error, userData) {
console.log('p')
if (error) {
switch (error.code) {
case "EMAIL_TAKEN":
console.log("The new user account cannot be created because the email is already in use.");
break;
case "INVALID_EMAIL":
console.log("The specified email is not a valid email.");
break;
default:
console.log("Error creating user:", error);
}
} else {
$('.login').animate({opacity:0})
$('.newUser').animate({opacity:0})
}
});
}