28 lines
1 KiB
PHP
28 lines
1 KiB
PHP
|
<?php include(__DIR__."/../layout/top.php"); ?>
|
||
|
<div class="row">
|
||
|
<div class="col-md-12">
|
||
|
<a href="/gui/admin/invites/new" class="btn btn-success" style="float: right;">New Invite</a>
|
||
|
<h3>Invite Token</h3>
|
||
|
<table class="table">
|
||
|
<tr>
|
||
|
<th>ID</th>
|
||
|
<th>Username</th>
|
||
|
<th>Status</th>
|
||
|
<th>Invide Token</th>
|
||
|
<th>Comment</th>
|
||
|
</tr>
|
||
|
<?php
|
||
|
foreach($invites as $invite) {
|
||
|
echo "<tr>";
|
||
|
echo "<td>".$invite->id."</td>";
|
||
|
echo "<td>".$invite->username."</td>";
|
||
|
echo "<td>".$invite->status."</td>";
|
||
|
echo "<td>".$invite->code."</td>";
|
||
|
echo "<td>".$invite->comment."</td>";
|
||
|
echo "</tr>";
|
||
|
}
|
||
|
?>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php include(__DIR__."/../layout/bottom.php"); ?>
|