-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.32 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dwarf Fortress Resource Tracker</title>
</head>
<body>
<div id="dashboard">
<h1>Dwarf Fortress Resource Tracker</h1>
<form id="resource-form">
<!-- Form Inputs -->
<input type="text" id="resource-name" placeholder="Resource Name" required>
<input type="number" id="resource-quantity" placeholder="Quantity" required>
<input type="number" id="resource-usage" placeholder="Daily Usage Rate" required>
<input type="number" id="reorder-threshold" placeholder="Reorder Threshold" required>
<button type="submit">Add Resource</button>
</form>
<div id="resource-tables">
<table id="resource-table">
<thead>
<tr>
<th>Item</th>
<th>Quantity</th>
<th>Usage Rate</th>
<th>Reorder Threshold</th>
<th>Alert</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<!-- JavaScript file -->
<script src="app.js"></script>
</body>
</html>