Quote:
Originally Posted by Dr.CustUmz
|
Oh, yeah, I can see how you could make that mistake.
Quote:
and wouldnt local storage or a cookie work for keeping them on that page (redirect to that page no matter what) untill the password was confirmed?
or would it have to be sql based?
|
You could use a cookie, but people can disable cookies, or delete or fake the value of cookies, so it depends on how secure you need it to be.
Quote:
and i have an idle timer i created for this already, would it be possible to modify table (0,1 maybe) using this timer
Code:
idleTime = 0;
$(document).ready(function () {
startIdle();
var idleInterval = setInterval(timerIncrement, 1000);
$(document).bind( "mousemove keypress", function () {
idleTime = 0;
});
});
the timer would set the table to 1 and entering the password back to 0?
|
You'd have to connect to the server when the timer ran out, to a script that did whatever you needed to do to put them in idle mode (unless you go the cookie route, in which case I believe you can write one with js). You could just load a new page when the timer ran out, I think that's easy enough to do.