$(function() {
var d = new Date();
var hora = d.getHours();
if (_userdata["user_level"] > 0) {
console.log("Você é da staff e pode acessar o fórum.");
} else if (hora >= 22 || hora <= 7) {
$('body').html('<div class="forumfechado">Fórum atualmente fechado. Volte mais tarde.</div>');
};
});
This code "closes" the webpage between 22 and 7. However, it takes the time of the PC and anyone who changes the time of the PC can access the webpage. How do I make sure this does not happen? Could you do it using a GMT / Time Zone? If so, how?