Files
WebJROTC/admin/admin.js
T
nicholaspease18 bf026adcfb Changes
2019-09-16 15:46:40 -04:00

29 lines
1.1 KiB
JavaScript

function externalOnLoad() {
verify();
timeChange();
updatePage();
readData("company", function(data) {
document.getElementById("alphacurrentpoints").innerHTML = data.alphapoints
document.getElementById("bravocurrentpoints").innerHTML = data.bravopoints
});
window.setInterval(verify(),1000);
}
// Verify if the user has access
function verify() {
firebase.auth().onAuthStateChanged(function(user) {
if (user) {
readData("users", function(array) {
if (array[firebase.auth().currentUser.email.replace("@","|").replace(".",",")]) {
document.getElementById("page-content").style.display = "block"
document.getElementById("unauthorized").style.display = "none"
} else {
document.getElementById("unauthorized").style.display = "block"
document.getElementById("page-content").style.display = "none"
}});
} else {
document.getElementById("unauthorized").style.display = "block"
document.getElementById("page-content").style.display = "none"
}
})
}