mirror of
				https://github.com/fspc/Yellow-Bike-Database.git
				synced 2025-10-31 00:45:35 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			407 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			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>
 |