Files
Prog4_Beadando/WD7UVN_SzTGUI_2023242.Client.JS/wwwroot/services/services.html

72 lines
1.9 KiB
HTML
Raw Normal View History

2024-04-30 10:16:11 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2024-05-06 17:16:17 +02:00
<title>Services</title>
2024-04-30 13:16:26 +02:00
<link rel="stylesheet" type="text/css" href="../style.css">
2024-04-30 11:06:49 +02:00
<script src="services.js"></script>
2024-04-30 10:16:11 +02:00
</head>
<body>
<h1>Services</h1>
<br>
<a href="#add" class="bookmark">Want to add a new line?</a>
<br>
<br>
2024-04-30 11:39:43 +02:00
<table class="queryresults">
2024-04-30 11:06:49 +02:00
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th colspan="2">Actions</th>
</tr>
</thead>
<tbody id="resultarea">
</tbody>
</table>
2024-04-30 20:34:10 +02:00
<br>
2024-04-30 11:06:49 +02:00
<h2 id="add">Add a new line</h2>
<table class="inputs">
<tr>
<td>ID</td>
<td class="inputcell"><input type="text" id="in_id"></td>
</tr>
<tr>
<td>Maintainer</td>
<td class="inputcell"><input type="text" id="in_maintainer_id"></td>
</tr>
<tr>
<td>Name</td>
<td class="inputcell"><input type="text" id="in_name"></td>
</tr>
<tr>
<td>Version</td>
<td class="inputcell"><input type="text" id="in_version"></td>
</tr>
<tr>
<td>Account</td>
<td class="inputcell"><input type="text" id="in_account"></td>
</tr>
<tr>
<td>Notes</td>
<td class="inputcell"><input type="text" id="in_notes"></td>
</tr>
<tr>
<td>Service domain</td>
<td class="inputcell"><input type="text" id="in_domain"></td>
</tr>
<tr>
<td>IP</td>
<td class="inputcell"><input type="text" id="in_ip"></td>
</tr>
<tr>
<td>Port</td>
<td class="inputcell"><input type="text" id="in_port"></td>
</tr>
2024-05-05 22:22:06 +02:00
<tr>
<td colspan="2"><button onclick="addemployee()">Save</button></td>
</tr>
2024-04-30 11:06:49 +02:00
</table>
<div id="addresult"></div>
2024-04-30 10:16:11 +02:00
</body>
</html>