Add minimal Web UI server

This commit is contained in:
Andy Oknen 2025-07-29 20:14:41 +00:00
parent 707e90b1b3
commit 345d5b9cbd
13 changed files with 2058 additions and 0 deletions

View file

@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yggdrasil Web Interface</title>
<link rel="stylesheet" href="static/style.css">
</head>
<body>
<div class="container">
<header>
<h1>🌳 Yggdrasil Web Interface</h1>
<p>Network mesh management dashboard</p>
</header>
<main>
<div class="status-card">
<h2>Node Status</h2>
<div class="status-indicator">
<span class="status-dot active"></span>
<span>Active</span>
</div>
<p>WebUI is running and accessible</p>
</div>
<div class="info-grid">
<div class="info-card">
<h3>Configuration</h3>
<p>Manage node settings and peers</p>
<small>Coming soon...</small>
</div>
<div class="info-card">
<h3>Peers</h3>
<p>View and manage peer connections</p>
<small>Coming soon...</small>
</div>
<div class="info-card">
<h3>Network</h3>
<p>Network topology and routing</p>
<small>Coming soon...</small>
</div>
</div>
</main>
<footer>
<p>Yggdrasil Network • Minimal WebUI v1.0</p>
</footer>
</div>
</body>
</html>