2024-04-30 10:16:11 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>Customers</title>
|
2024-04-30 13:16:26 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="../style.css">
|
2024-05-09 17:56:16 +02:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/microsoft-signalr/6.0.1/signalr.js"></script>
|
2024-04-30 13:09:39 +02:00
|
|
|
<script src="customers.js"></script>
|
2024-04-30 10:16:11 +02:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<h1>Customers</h1>
|
|
|
|
|
<br>
|
2024-04-30 11:56:59 +02:00
|
|
|
<table class="queryresults">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>ID</th>
|
|
|
|
|
<th>Name</th>
|
|
|
|
|
<th colspan="2">Actions</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody id="resultarea">
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
2024-05-06 17:47:53 +02:00
|
|
|
<div id="forms"></div>
|
|
|
|
|
<h2 id="saveresult"></h2>
|
2024-04-30 10:16:11 +02:00
|
|
|
</body>
|
|
|
|
|
</html>
|