Ember's auth route bounces between ?with=netkingdom/ and ?with=token when OIDC mounts are hidden from the unauthenticated listing. Bypass Ember on the bare auth path with a static login page that calls auth_url directly; OIDC callbacks still proxy to the OpenBao UI.
22 lines
747 B
HTML
22 lines
747 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 with KeyCape</title>
|
|
<link rel="stylesheet" href="/ui/platform-overlay/login.css" />
|
|
<script src="/ui/platform-overlay/login.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<main class="login-card">
|
|
<h1 id="login-title">Sign in with KeyCape</h1>
|
|
<p id="login-banner">
|
|
Platform operators authenticate through KeyCape at kc.coulomb.social.
|
|
</p>
|
|
<button id="login-submit" class="login-button" type="button">
|
|
Sign in with KeyCape
|
|
</button>
|
|
<div id="login-error" class="login-error" role="alert"></div>
|
|
</main>
|
|
</body>
|
|
</html> |