1
0
mirror of https://github.com/fspc/Yellow-Bike-Database.git synced 2025-02-22 08:53:23 -05:00
Yellow-Bike-Database-Mirror/include_timeout.html

18 lines
407 B
HTML
Raw Normal View History

<!--//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>