mirror of
https://github.com/gnh1201/welsonjs.git
synced 2024-11-26 15:31:42 +00:00
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
////////////////////////////////////////////////////////////////////////
|
|
// index.js
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
var FILE = require("lib/file");
|
|
var OldBrowser = require("lib/oldbrowser");
|
|
|
|
var token;
|
|
if (FILE.fileExists("token.txt")) {
|
|
token = FILE.readFile("token.txt", FILE.CdoCharset.CdoUTF_8);
|
|
}
|
|
|
|
OldBrowser.setContent(FILE.readFile("app\\signin.html", FILE.CdoCharset.CdoUTF_8));
|
|
|
|
document.getElementById("loginform").onsubmit = function(ev) {
|
|
ev.preventDefault();
|
|
};
|
|
|
|
if (FILE.fileExists("credential.json")) {
|
|
var credential = JSON.parse(FILE.readFile("credential.json", FILE.CdoCharset.CdoUTF_8));
|
|
document.getElementById("txt_email").value = credential.email;
|
|
document.getElementById("txt_password").value = credential.password;
|
|
}
|
|
|
|
document.getElementById("btn_submit").onclick = function() {
|
|
var credential = {
|
|
"email": document.getElementById("txt_email").value,
|
|
"password": document.getElementById("txt_password").value
|
|
};
|
|
|
|
FILE.writeFile("credential.json", JSON.stringify(credential), FILE.CdoCharset.CdoUTF_8);
|
|
};
|