This commit is contained in:
2026-01-25 21:02:45 +01:00
parent 5b868a6cde
commit 01863c1df0
10 changed files with 399 additions and 7 deletions

View File

@@ -38,6 +38,7 @@
<div class="flex gap-4 mb-8">
<button class="btn btn-primary" onclick="showSection('users')">Users</button>
<button class="btn btn-secondary" onclick="showSection('apps')">Applications</button>
<button class="btn btn-secondary" onclick="showSection('requests')">Requests</button>
</div>
<!-- Users Section -->
@@ -88,6 +89,31 @@
</table>
</div>
</section>
<!-- Requests Section -->
<section id="requests-section" class="hidden">
<div class="flex justify-between items-center mb-4">
<h2 class="text-2xl">Access Requests</h2>
<button class="btn btn-primary" onclick="loadRequests()">Refresh</button>
</div>
<div class="card">
<table id="requests-table">
<thead>
<tr>
<th>ID</th>
<th>Username</th>
<th>Email</th>
<th>Requested Apps</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<!-- Requests will be populated here -->
</tbody>
</table>
</div>
</section>
</main>
</div>