added scripts to all tables

This commit is contained in:
2024-04-30 13:09:39 +02:00
parent 05dda59265
commit 7eae092b06
4 changed files with 240 additions and 4 deletions

View File

@@ -4,6 +4,7 @@
<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>
@@ -45,9 +46,13 @@
<td class="inputcell"><input type="text" id="in_maintainer_id"></td>
</tr>
<tr>
<td colspan="2"><button onclick="addService()">Save</button></td>
<td>Manager ID</td>
<td class="inputcell"><input type="text" id="in_manager_id"></td>
</tr>
<tr>
<td colspan="2"><button onclick="addemployee()">Save</button></td>
</tr>
</table>
<div id="addresult"></div>
<h2 id="addresult"></h2>
</body>
</html>