Files
fvsjs/templates/accounts.html
Torsten Schulz 44da93c0e9 initial
2023-06-16 11:57:49 +02:00

27 lines
610 B
HTML

<h2>Nicht bearbeitete Anfragen</h2>
<form action="accounts.php" method="post">
<table>
<thead>
<tr>
<th>Benutzername</th>
<th>Realname</th>
<th>Email-Adresse</th>
<th>Aktion</th>
</tr>
</thead>
{{inactive_accounts}}
</table>
<h2>Aktive Zugänge</h2>
<table>
<thead>
<tr>
<th>Benutzername</th>
<th>Realname</th>
<th>Email-Adresse</th>
<th>Aktion</th>
</tr>
</thead>
{{active_accounts}}
</table>
</form>