Files
sticknife-home/app/templates/admin.html
T
2026-08-15 11:15:31 +02:00

32 lines
962 B
HTML

<div class="pagehead">
<div>
<h1>Admin</h1>
<p>Review pending registrations and recent account activity.</p>
</div>
</div>
<section class="panel">
<h2>Pending approvals</h2>
<table>
<thead><tr><th>Username</th><th>Email</th><th>Name</th><th>Status</th><th></th></tr></thead>
<tbody>$pending_rows</tbody>
</table>
</section>
<section class="panel">
<h2>Unverified registrations</h2>
<table>
<thead><tr><th>Username</th><th>Email</th><th>Name</th><th>Status</th><th></th></tr></thead>
<tbody>$unverified_rows</tbody>
</table>
<form class="admin-purge" method="post" action="/admin/purge-unverified">
<button class="danger" type="submit" $purge_disabled>Purge unverified</button>
</form>
</section>
<section class="panel">
<h2>Recent registrations</h2>
<table>
<thead><tr><th>Username</th><th>Email</th><th>Name</th><th>Status</th><th></th></tr></thead>
<tbody>$recent_rows</tbody>
</table>
</section>