skeleton webpage

This commit is contained in:
2025-11-26 16:35:23 -05:00
parent dbfd3537fe
commit 1dde34d266
12 changed files with 175 additions and 7 deletions

24
templates/dashboard.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<title>War Dashboard</title>
<link rel="stylesheet" href="/static/styles.css">
</head>
<body>
<h1>War Dashboard</h1>
<div>
<h2>Enemy Faction</h2>
<button onclick="updateEnemy()">Refresh Enemy</button>
</div>
<div>
<h2>Friendly Faction</h2>
<button onclick="updateFriendly()">Refresh Friendly</button>
</div>
<script src="/static/dashboard.js"></script>
</body>
</html>