30 lines
793 B
HTML
30 lines
793 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>Provisioning Daemon — Admin</title>
|
||
|
|
<link rel="stylesheet" href="/admin/style.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<header>
|
||
|
|
<h1>Provisioning Daemon</h1>
|
||
|
|
<nav>
|
||
|
|
<button data-panel="health">Health</button>
|
||
|
|
<button data-panel="tools">Tools</button>
|
||
|
|
<button data-panel="stats">Stats</button>
|
||
|
|
<button data-panel="recent">Recent</button>
|
||
|
|
</nav>
|
||
|
|
<div id="auth">
|
||
|
|
<input id="token" placeholder="Bearer token (optional)" />
|
||
|
|
</div>
|
||
|
|
</header>
|
||
|
|
<main>
|
||
|
|
<section id="health" hidden></section>
|
||
|
|
<section id="tools" hidden></section>
|
||
|
|
<section id="stats" hidden></section>
|
||
|
|
<section id="recent" hidden></section>
|
||
|
|
</main>
|
||
|
|
<script src="/admin/app.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|