blob: 5e43fae9f3a86aa4ad795dba78c6ad7c12569c57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<? 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>
|