47 lines
1.1 KiB
HTML
47 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>DHCP Lease Manager</title>
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>DHCP Lease Manager</h1>
|
|
<div id="stats" class="stats-bar">
|
|
<span id="active-count">--</span> active •
|
|
<span id="pinned-count">--</span> permanent
|
|
</div>
|
|
<div class="actions-bar">
|
|
<button id="reload-btn" class="btn btn-secondary" title="Reload dnsmasq to apply changes">
|
|
Reload dnsmasq
|
|
</button>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<table id="leases-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Hostname</th>
|
|
<th>IP Address</th>
|
|
<th>MAC Address</th>
|
|
<th>Status</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="leases-body">
|
|
<tr class="loading-row">
|
|
<td colspan="5">Loading leases...</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</main>
|
|
|
|
<div id="toast" class="toast hidden"></div>
|
|
|
|
<meta name="csrf-token" content="{{.csrfToken}}">
|
|
<script src="./app.js"></script>
|
|
</body>
|
|
</html>
|