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