Include SVG favicon showing hexagon network topology with nodes and connections, integrated into admin console and /docs portal for consistent branding. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
28 lines
1018 B
HTML
28 lines
1018 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Sign in · API Gateway</title>
|
|
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="login-wrap">
|
|
<div class="card login-card">
|
|
<div class="brand" style="font-size:18px;font-weight:700;margin-bottom:14px;">
|
|
API <span style="color:var(--series-1)">Gateway</span>
|
|
</div>
|
|
{% if error %}<div class="alert error">{{ error }}</div>{% endif %}
|
|
<form method="post" action="/admin/login">
|
|
<label for="username">Username</label>
|
|
<input id="username" type="text" name="username" required autofocus>
|
|
<label for="password">Password</label>
|
|
<input id="password" type="password" name="password" required>
|
|
<div style="margin-top:16px"><button type="submit" style="width:100%">Sign in</button></div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|