feature1
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user