2025-12-18 22:40:46 +00:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2026-01-30 03:15:10 +01:00
|
|
|
<title>OpenClaw Control</title>
|
2025-12-18 22:40:46 +00:00
|
|
|
<meta name="color-scheme" content="dark light" />
|
2026-01-30 04:01:31 +01:00
|
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" />
|
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
UI: gateway dashboard with glassmorphism theme system
Add a full-featured gateway dashboard UI built on Lit web components.
Shell & plumbing:
- App shell with router, controllers, and dependency wiring
- Login gate, i18n keys, and base layout scaffolding
Styles & theming:
- Base styles, chat styles, and responsive layout CSS
- 6-theme glassmorphism system (Obsidian, Aurora, Solar, etc.)
- Glass card, glass panel, and glass input components
- Favicon logo in expanded sidebar header
Views & features:
- Overview with attention cards, event log, quick actions, and log tail
- Chat view with markdown rendering, tool-call collapse, and delete support
- Command palette with fuzzy search
- Agent overview with config display, slash commands, and sidebar filtering
- Session list navigation and agent selector
Privacy & polish:
- Redact toggle with stream-mode default
- Blur host/IP in Connected Instances with reveal toggle
- Sensitive config value masking with count badge
- Card accent borders, hover lift effects, and responsive grid
2026-02-22 05:23:55 -06:00
|
|
|
<script>
|
|
|
|
|
(function () {
|
|
|
|
|
var VALID = ["dark", "light", "openknot", "fieldmanual", "openai", "clawdash"];
|
|
|
|
|
try {
|
|
|
|
|
var s = JSON.parse(localStorage.getItem("openclaw.control.settings.v1") || "{}");
|
|
|
|
|
var t = s && s.theme;
|
|
|
|
|
if (t && VALID.indexOf(t) !== -1) {
|
|
|
|
|
document.documentElement.setAttribute("data-theme", t);
|
|
|
|
|
}
|
|
|
|
|
} catch (e) {}
|
|
|
|
|
})();
|
|
|
|
|
</script>
|
2025-12-18 22:40:46 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2026-01-30 03:15:10 +01:00
|
|
|
<openclaw-app></openclaw-app>
|
2025-12-18 22:40:46 +00:00
|
|
|
<script type="module" src="/src/main.ts"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|