This commit is contained in:
2026-01-25 17:11:36 +01:00
parent 43b1a8b2d9
commit 58a349280f

View File

@@ -41,38 +41,25 @@
</div> </div>
<!-- Users Section --> <!-- Users Section -->
<section id="users-section"> <div class="flex justify-between items-center mb-4">
<div class="flex justify-between items-center mb-4"> <h2 class="text-2xl">Applications</h2>
<h2 class="text-2xl">Users</h2> <button class="btn btn-primary" onclick="addApp()">Add Application</button>
<button class="btn btn-primary" onclick="addUser()">Add User</button> </div>
</div> <div class="card">
<div class="card"> <table id="apps-table">
<table id="users-table"> <thead>
</table> <tr>
</div> <th>ID</th>
</section> <th>Name</th>
<th>URL</th>
<!-- Applications Section --> <th>API Key</th>
<section id="apps-section" class="hidden"> </tr>
<div class="flex justify-between items-center mb-4"> </thead>
<h2 class="text-2xl">Applications</h2> <tbody>
<button class="btn btn-primary" onclick="addApp()">Add Application</button> <!-- Apps will be populated here -->
</div> </tbody>
<div class="card"> </table>
<table id="apps-table"> </div>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>URL</th>
<th>API Key</th>
</tr>
</thead>
<tbody>
<!-- Apps will be populated here -->
</tbody>
</table>
</div>
</section> </section>
</main> </main>
</div> </div>