added noncrud folder

This commit is contained in:
Miskolczi Richárd
2024-05-05 22:00:14 +02:00
parent 71d66ff208
commit 0ac564e16f
2 changed files with 22 additions and 0 deletions

View File

@@ -14,5 +14,7 @@
<a href="customers/customers.html" class="button">Customers</a> <a href="customers/customers.html" class="button">Customers</a>
<br> <br>
<a href="maintainer_teams/maintainerteam.html" class="button">Maintainer Team</a> <a href="maintainer_teams/maintainerteam.html" class="button">Maintainer Team</a>
<br>
<a href="noncrud/index.html" class="button">Non-CRUD</a>
</body> </body>
</html> </html>

View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Company Manager</title>
<link rel="stylesheet" type="text/css" href="../style.css">
</head>
<body>
<h1>Tables</h1>
<a href="./WhoUsesService.html" class="button">Get clients using a service</a>
<br>
<a href="./GetSubordinates.html" class="button">Get subordinates of employee</a>
<br>
<a href="./WhoIsResponsibleForService.html" class="button">Get responsible leader for service</a>
<br>
<a href="./WhoMaintainsService.html" class="button">Get employees working on a service</a>
<br>
<a href="./WhoWorksInMaintainerTeam.html" class="button">Get members of a team</a>
</body>
</html>