27 lines
685 B
HTML
27 lines
685 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Services</title>
|
|
<link rel="stylesheet" type="text/css" href="../style.css">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/microsoft-signalr/6.0.1/signalr.js"></script>
|
|
<script src="services.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Services</h1>
|
|
<br>
|
|
<table class="queryresults">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Name</th>
|
|
<th colspan="2">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="resultarea">
|
|
</tbody>
|
|
</table>
|
|
<div id="forms"></div>
|
|
<h2 id="saveresult"></h2>
|
|
</body>
|
|
</html> |