29 lines
880 B
HTML
29 lines
880 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>War Dashboard</title>
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>War Dashboard</h1>
|
|
|
|
<div class="faction-section">
|
|
<h2>Enemy Faction</h2>
|
|
<input type="number" id="enemyId" placeholder="Enemy Faction ID">
|
|
<input type="number" id="refreshInterval" placeholder="Refresh Interval (sec)">
|
|
<button onclick="updateEnemy()">Refresh Enemy</button>
|
|
</div>
|
|
|
|
<div class="faction-section">
|
|
<h2>Friendly Faction</h2>
|
|
<input type="number" id="friendlyId" placeholder="Friendly Faction ID">
|
|
<button onclick="updateFriendly()">Refresh Friendly</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="/static/dashboard.js"></script>
|
|
</body>
|
|
</html>
|