35 lines
846 B
PHP
35 lines
846 B
PHP
<?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"); ?>
|