skeleton webpage
This commit is contained in:
24
templates/dashboard.html
Normal file
24
templates/dashboard.html
Normal 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>
|
||||
|
||||
Reference in New Issue
Block a user