Spaces:
Sleeping
Sleeping
| <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> | |