Spaces:
Sleeping
Sleeping
File size: 1,360 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 | <!DOCTYPE html>
<html>
<head>
<title>Login - API Comparator</title>
<link
rel="stylesheet"
href="{{url_for('static', path='css/styles.css') }}"
/>
</head>
<body>
<div class="login-container">
<div class="header">
<img
src="{{ url_for('static', path='images/TD-logo.jpeg') }}"
alt="Logo"
class="logo"
/>
</div>
{% if error %}
<div class="error">{{ error }}</div>
{% endif %}
<form method="POST" action="/login">
<div class="form-group">
<label for="username">Username:</label>
<input
type="text"
id="username"
name="username"
class="form-control"
required
/>
</div>
<div class="form-group">
<label for="password">Password:</label>
<input
type="password"
id="password"
name="password"
class="form-control"
required
/>
</div>
<button type="submit" class="button">Login</button>
</form>
</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>
|