mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
14 lines
371 B
PHP
14 lines
371 B
PHP
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
<div class="gBlock">
|
|
<a href="" class="gClose">X</a>
|
|
<h2>User Administration</h2>
|
|
<div class="gBlockContent">
|
|
<p>These are the users in your system</p>
|
|
<table>
|
|
<? foreach ($users as $i => $user): ?>
|
|
<tr><td><?= $user->name ?></td></tr>
|
|
<? endforeach ?>
|
|
</table>
|
|
</div>
|
|
</div>
|