This commit is contained in:
Torsten Schulz
2023-06-16 11:57:49 +02:00
commit 44da93c0e9
328 changed files with 134580 additions and 0 deletions

26
templates/accounts.html Normal file
View File

@@ -0,0 +1,26 @@
<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>