applied changes to other pages

This commit is contained in:
2024-04-30 11:56:59 +02:00
parent 0be50114e4
commit b7d1490482
3 changed files with 110 additions and 92 deletions

View File

@@ -11,37 +11,43 @@
<a href="#add" class="bookmark">Want to add a new line?</a> <a href="#add" class="bookmark">Want to add a new line?</a>
<br> <br>
<br> <br>
<table> <table class="queryresults">
<thead> <thead>
<tr> <tr>
<th>ID</th> <th>ID</th>
<th>Name</th> <th>Name</th>
<th colspan="2">Actions</th> <th colspan="2">Actions</th>
</tr> </tr>
</thead> </thead>
</table> <tbody id="resultarea">
<h2 id="add">Add a new line</h2> </tbody>
<table class="inputs"> </table>
<tr> <h2 id="add">Add a new line</h2>
<th>ID</th> <table class="inputs">
<th><input type="text"></th> <tr>
</tr> <td>ID</td>
<tr> <td class="inputcell"><input type="text" id="in_id"></td>
<th>Name</th> </tr>
<th><input type="text"></th> <tr>
</tr> <td>Name</td>
<tr> <td class="inputcell"><input type="text" id="in_name"></td>
<th>Email</th> </tr>
<th><input type="text"></th> <tr>
</tr> <td>Email</td>
<tr> <td class="inputcell"><input type="text" id="in_email"></td>
<th>Phone</th> </tr>
<th><input type="text"></th> <tr>
</tr> <td>Phone</td>
<tr> <td class="inputcell"><input type="text" id="in_phone"></td>
<th>Service ID</th> </tr>
<th><input type="text"></th> <tr>
</tr> <td>Service ID</td>
</table> <td class="inputcell"><input type="text" id="in_service_id"></td>
</tr>
<tr>
<td colspan="2"><button onclick="addService()">Save</button></td>
</tr>
</table>
<div id="addresult"></div>
</body> </body>
</html> </html>

View File

@@ -11,37 +11,43 @@
<a href="#add" class="bookmark">Want to add a new line?</a> <a href="#add" class="bookmark">Want to add a new line?</a>
<br> <br>
<br> <br>
<table> <table class="queryresults">
<thead> <thead>
<tr> <tr>
<th>ID</th> <th>ID</th>
<th>Name</th> <th>Name</th>
<th colspan="2">Actions</th> <th colspan="2">Actions</th>
</tr> </tr>
</thead> </thead>
</table> <tbody id="resultarea">
<h2 id="add">Add a new line</h2> </tbody>
<table class="inputs"> </table>
<tr> <h2 id="add">Add a new line</h2>
<th>ID</th> <table class="inputs">
<th><input type="text"></th> <tr>
</tr> <td>ID</td>
<tr> <td class="inputcell"><input type="text" id="in_id"></td>
<th>Name</th> </tr>
<th><input type="text"></th> <tr>
</tr> <td>Name</td>
<tr> <td class="inputcell"><input type="text" id="in_name"></td>
<th>Email</th> </tr>
<th><input type="text"></th> <tr>
</tr> <td>Email</td>
<tr> <td class="inputcell"><input type="text" id="in_email"></td>
<th>Phone</th> </tr>
<th><input type="text"></th> <tr>
</tr> <td>Phone</td>
<tr> <td class="inputcell"><input type="text" id="in_phone"></td>
<th>Maintainer ID</th> </tr>
<th><input type="text"></th> <tr>
</tr> <td>Maintainer ID</td>
</table> <td class="inputcell"><input type="text" id="in_maintainer_id"></td>
</tr>
<tr>
<td colspan="2"><button onclick="addService()">Save</button></td>
</tr>
</table>
<div id="addresult"></div>
</body> </body>
</html> </html>

View File

@@ -11,33 +11,39 @@
<a href="#add" class="bookmark">Want to add a new line?</a> <a href="#add" class="bookmark">Want to add a new line?</a>
<br> <br>
<br> <br>
<table> <table class="queryresults">
<thead> <thead>
<tr> <tr>
<th>ID</th> <th>ID</th>
<th>Name</th> <th>Name</th>
<th colspan="2">Actions</th> <th colspan="2">Actions</th>
</tr> </tr>
</thead> </thead>
</table> <tbody id="resultarea">
<h2 id="add">Add a new line</h2> </tbody>
<table class="inputs"> </table>
<tr> <h2 id="add">Add a new line</h2>
<th>ID</th> <table class="inputs">
<th><input type="text"></th> <tr>
</tr> <td>ID</td>
<tr> <td class="inputcell"><input type="text" id="in_id"></td>
<th>Name</th> </tr>
<th><input type="text"></th> <tr>
</tr> <td>Name</td>
<tr> <td class="inputcell"><input type="text" id="in_name"></td>
<th>Email</th> </tr>
<th><input type="text"></th> <tr>
</tr> <td>Email</td>
<tr> <td class="inputcell"><input type="text" id="in_email"></td>
<th>Leader ID</th> </tr>
<th><input type="text"></th> <tr>
</tr> <td>Leader ID</td>
</table> <td class="inputcell"><input type="text" id="in_leader_id"></td>
</tr>
<tr>
<td colspan="2"><button onclick="addService()">Save</button></td>
</tr>
</table>
<div id="addresult"></div>
</body> </body>
</html> </html>