26 lines
586 B
HTML
26 lines
586 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Employees</title>
|
|
<link rel="stylesheet" type="text/css" href="../style.css">
|
|
<script src="employees.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Employees</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> |