mirror of
https://18126008609:longquanjian123@gitee.com/feigong123/aurask.git
synced 2026-04-19 15:00:35 +00:00
32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Aurask Manager</title>
|
|
<link rel="stylesheet" href="./styles.css" />
|
|
</head>
|
|
<body>
|
|
<main class="shell">
|
|
<section class="hero">
|
|
<p class="eyebrow">Aurask Manager</p>
|
|
<h1>Operate tenant-safe AI workflow infrastructure</h1>
|
|
<p>Inspect bridge configuration and verify production integration readiness.</p>
|
|
</section>
|
|
|
|
<section class="card">
|
|
<h2>Admin Connection</h2>
|
|
<label>API Base URL <input id="apiBase" value="http://127.0.0.1:8080" /></label>
|
|
<label>Admin API Key <input id="apiKey" placeholder="Use owner API key from bootstrap" /></label>
|
|
<button id="statusBtn">Load Bridge Status</button>
|
|
</section>
|
|
|
|
<section class="card">
|
|
<h2>Bridge Status</h2>
|
|
<pre id="statusOutput"></pre>
|
|
</section>
|
|
</main>
|
|
<script src="./main.js"></script>
|
|
</body>
|
|
</html>
|