25 lines
428 B
HTML
25 lines
428 B
HTML
<!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>
|
|
|