Spaces:
Sleeping
Sleeping
File size: 1,596 Bytes
2d9b352 5970584 2d9b352 5970584 2d9b352 5970584 2d9b352 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | <!DOCTYPE html>
<html>
<head>
<title>Authentication Required - API Comparator</title>
<link
rel="stylesheet"
href="{{url_for('static', path='css/styles.css') }}"
/>
<style>
.unauthorized-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);
}
.unauthorized-icon {
font-size: 48px;
color: #dc3545;
margin-bottom: 20px;
}
.unauthorized-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="unauthorized-container">
<div class="unauthorized-icon">🔒</div>
<h2>Authentication Required</h2>
<div class="unauthorized-message">
You need to be logged in to access this page.<br />
Please log in to continue.
</div>
<a href="/login" class="login-button">Log In</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>
|