-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
37 lines (32 loc) · 1007 Bytes
/
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
function getCookie(cname) {
let name = cname + "=";
let decodedCookie = decodeURIComponent(document.cookie);
let ca = decodedCookie.split(';');
for(let i = 0; i <ca.length; i++) {
let c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
async function login() {
if (getCookie('address') == ""){
Moralis.authenticate().then(function (user) {
console.log(user.get('ethAddress'))
const d = new Date();
d.setTime(d.getTime() + (24*60*60*1000));
let expires = "expires="+ d.toUTCString();
document.cookie = 'address' + "=" + user.get('ethAddress') + ";" + expires + ";path=/";
return
})
}
else{
console.log('address:')
console.log(getCookie('address'))
}
}
document.getElementById("login_button").onclick = login;