BiryaniHubflask34 / templates /dashboard.html
nagasurendra's picture
Create dashboard.html
429ba3c verified
raw
history blame
998 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<script>
let inactivityTimer;
function resetTimer() {
clearTimeout(inactivityTimer);
inactivityTimer = setTimeout(logout, 5 * 60 * 1000); // 5 minutes
}
function logout() {
window.location.href = "/logout"; // Redirect to logout
}
// Reset timer on user activity
document.addEventListener("mousemove", resetTimer);
document.addEventListener("keydown", resetTimer);
document.addEventListener("click", resetTimer);
document.addEventListener("touchstart", resetTimer);
// Initialize the timer when the page loads
resetTimer();
</script>
</head>
<body>
<h1>Welcome to the Dashboard</h1>
<p>You will be logged out automatically after 5 minutes of inactivity.</p>
</body>
</html>