initial commit

This commit is contained in:
2024-01-12 01:57:58 +01:00
commit c1ae171bc2
25 changed files with 9560 additions and 0 deletions

35
admin/uzivatele.php Normal file
View File

@@ -0,0 +1,35 @@
<?php
include_once("../-inc/header.php");
?>
</head>
<body>
<?php include_once("../-inc/menu-admin.php"); ?>
<div class="container">
<div class="row align-items-center px-3">
<div class="col">
<h1 class="my-3">Uživatelé</h1>
</div>
</div>
<div class="row">
<table class="table table-striped table-hover">
<thead class="thead-light">
<tr>
<th scope="col">Jméno</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<?php
vypisUzivatelu();
?>
</tbody>
</table>
</div>
</div>
<?php include_once("../-inc/footer.php"); ?>