api_diff / templates /session_timeout.html
kumudraj01's picture
spell fix
5970584
Raw
History Blame Contribute Delete
1.56 kB
<!DOCTYPE html>
<html>
<head>
<title>Session Timeout - API Comparator</title>
<link
rel="stylesheet"
href="{{url_for('static', path='css/styles.css') }}"
/>
<style>
.timeout-container {
max-width: 500px;
margin: 100px auto;
padding: 30px;
text-align: center;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.timeout-icon {
font-size: 48px;
color: #dc3545;
margin-bottom: 20px;
}
.timeout-message {
margin: 20px 0;
color: #666;
}
.login-button {
display: inline-block;
margin-top: 20px;
padding: 10px 30px;
background-color: #4caf50;
color: white;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s;
}
.login-button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<div class="timeout-container">
<div class="timeout-icon"></div>
<h2>Session Expired</h2>
<div class="timeout-message">
Your session has timed out due to inactivity.<br />
Please log in again to continue.
</div>
<a href="/login" class="login-button">Log In Again</a>
</div>
<div
style="text-align: center; margin-top: 20px; color: #666; font-size: 12px"
>
Copyright © 2025 TELUS Digital. All rights reserved.<br />
For internal use only.
</div>
</body>
</html>