-
Notifications
You must be signed in to change notification settings - Fork 0
/
session.js
56 lines (53 loc) · 1.49 KB
/
session.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
function emailCheck(){
var elEmail = document.getElementById("email");
var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
return reg.test(elEmail.value);
}
function mmlogin(){
joinCancel();
console.log("login");
var elEmail = document.getElementById("email");
if( !emailCheck() ){
var elError = document.getElementById("errorMsg");
elError.innerHTML = "email validation fail";
elEmail.focus();
return false;
}
// xml request call
var mmapi = new MindmapAPI();
mmapi.loginRsp = function(boolResult){
if( boolResult ){
window.location = "./mindmap.html";
return false;
}
else{
var elEmail = document.getElementById("email");
var elPasswd = document.getElementById("passwd");
elEmail.focus();
elPasswd.value = "";
var elError = document.getElementById("errorMsg");
elError.innerHTML = "check id or passwd";
return false;
}
}
var elPasswd = document.getElementById("passwd");
mmapi.login( elEmail.value, elPasswd.value );
return false;
}
function mmlogout(){
console.log("logout");
// xml request call
var mmapi = new MindmapAPI();
mmapi.logoutRsp = function(boolResult){
if( boolResult ){
window.location = "./";
return true;
}
else{
alert("you are not loged");
return true;
}
}
mmapi.logout();
return false;
}