24 lines
510 B
HTML
24 lines
510 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Core Agent Dashboard</title>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
padding: 2rem;
|
||
|
|
background: #020617;
|
||
|
|
font-family: 'Inter', system-ui, sans-serif;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<core-agent-panel
|
||
|
|
api-url="https://api.lthn.sh"
|
||
|
|
api-key="">
|
||
|
|
</core-agent-panel>
|
||
|
|
<script type="module" src="./agent-panel.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|