Files
prim-dns-server/file server/example/agents/index.xhtml
2024-12-06 15:00:00 -05:00

32 lines
797 B
HTML

<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Agents in region</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootswatch@4.5.2/dist/lumen/bootstrap.min.css" integrity="sha384-GzaBcW6yPIfhF+6VpKMjxbTx6tvR/yRd/yJub90CqoIn2Tz4rRXlSpTFYMKHCifX" crossorigin="anonymous"/>
<style>
body {
margin: 1em;
}
</style>
<script src="index.js"/>
</head>
<body>
<p><a href="..">Home</a></p>
<h1>Agents in region <span id="region-name"/>:</h1>
<table class="table table-hover">
<thead>
<tr class="table-primary">
<th>Key</th>
<th>Display name</th>
<th>Username</th>
<th>Position</th>
</tr>
</thead>
<tbody id="agents-table">
</tbody>
</table>
</body>
</html>