1
0
mirror of https://github.com/fspc/Yellow-Bike-Database.git synced 2025-02-21 08:34:27 -05:00
Yellow-Bike-Database-Mirror/include_timeout.html
2014-11-04 06:39:31 +00:00

18 lines
407 B
HTML

<!--//This function redirects the Log to the Welcome Page ================================================ -->
<script type="text/javascript">
var t;
window.onload=resetTimer;
document.onmousedown=resetTimer;
document.onkeypress=resetTimer;
function logout()
{
location.href='shop_welcome.php'
}
function resetTimer()
{
clearTimeout(t);
t=setTimeout(logout,1000*5) //logs out in 30 minutes
}
</script>