2023-10-21 17:06:20 +02:00
|
|
|
<div class="hidden sm:mb-8 sm:flex sm:justify-center">
|
2023-10-22 01:46:22 +02:00
|
|
|
<div class="relative rounded-full px-3 py-1 text-sm leading-6 text-gray-600 ring-1 ring-gray-900/10 hover:ring-gray-900/20">
|
2023-10-23 13:05:16 +02:00
|
|
|
Currently logged in as:
|
|
|
|
<?= $_SESSION['userid']?:'nobody' ?>
|
2023-10-21 17:06:20 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="text-center">
|
|
|
|
<h1 class="text-4xl font-bold tracking-tight text-gray-900 sm:text-6xl">Dogstats - der Agilityhelfer</h1>
|
|
|
|
<p class="mt-6 text-lg leading-8 text-gray-600">Anim aute id magna aliqua ad ad non deserunt sunt.
|
|
|
|
Qui irure qui lorem cupidatat commodo. Elit sunt amet fugiat veniam occaecat fugiat aliqua.</p>
|
|
|
|
<div class="mt-10 flex items-center justify-center gap-x-6">
|
2023-10-22 01:46:22 +02:00
|
|
|
<a href="#" class="rounded-md bg-indigo-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600">Get
|
2023-10-21 17:06:20 +02:00
|
|
|
started</a>
|
2023-10-22 01:46:22 +02:00
|
|
|
<a href="#" class="text-sm font-semibold leading-6 text-gray-900">Learn more <span aria-hidden="true">→</span></a>
|
2023-10-21 17:06:20 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-10-23 13:05:16 +02:00
|
|
|
<h1>Admin stuff</h1>
|
2023-10-27 12:31:50 +02:00
|
|
|
<figure class="table-responsive">
|
|
|
|
<table class="table" role="grid">
|
2023-10-23 13:05:16 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2023-10-22 01:46:22 +02:00
|
|
|
|
2023-10-23 13:05:16 +02:00
|
|
|
<th>
|
|
|
|
Login
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
Edit
|
|
|
|
</th>
|
2023-10-29 08:54:45 +01:00
|
|
|
<?php foreach (array_keys($userdata[0]) as $key) : ?>
|
|
|
|
<th>
|
|
|
|
<?= $key ?>
|
|
|
|
</th>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
|
|
|
|
2023-10-23 13:05:16 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php foreach ($userdata as $user) : ?>
|
2023-10-22 01:46:22 +02:00
|
|
|
|
2023-10-23 13:05:16 +02:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<button name="email" value="<?= $user['email'] ?>" hx-post="/admin/loginas/">Login</button>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button name="email" value="<?= $user['email'] ?>" hx-post="/admin/edituser/" hx-target="#main">Edit</button>
|
|
|
|
</td>
|
2023-10-27 12:31:50 +02:00
|
|
|
<?php foreach (array_keys($user) as $key) : ?>
|
|
|
|
<td class="px-6 py-4 text-sm text-gray-500">
|
|
|
|
<?= is_array($user[$key])?json_encode($user[$key]):$user[$key] ?>
|
|
|
|
</td>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
|
|
|
|
2023-10-23 13:05:16 +02:00
|
|
|
</tr>
|
2023-10-22 01:46:22 +02:00
|
|
|
|
2023-10-23 13:05:16 +02:00
|
|
|
<?php endforeach; ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</figure>
|