admin ui changes

This commit is contained in:
Bruno Rybársky 2024-02-04 09:53:18 +01:00
parent f71c250a3a
commit 547c8a1dd7
2 changed files with 6 additions and 4 deletions

@ -224,7 +224,7 @@ header ul li {
transition: opacity 0.5s ease-in-out;
}
.list-table{
table.list-table, table.list-table > th, table.list-table > tr, table.list-table > tr > td {
border: 2px solid var(--primary) ;
}

@ -58,13 +58,14 @@
<h1>Activation Codes</h1>
<h2>List Activation Codes</h2>
<button type="button" onclick="listActivationCodes()">List Activation Codes</button><br>
<table id="codeListTable"></table>
<button type="button" onclick="listActivationCodes()">List Activation Codes</button><br>
<h2>Add Activation Codes</h2>
<label for="activationCodeCount">Activation Code Count:</label>
<input type="text" id="activationCodeCount" name="activationCodeCount" required><br>
<button type="button" onclick="addActivationCodes()">Add Activation Codes</button>
<br>
<table id="codeListTable"></table>
</div>
<hr>
@ -72,6 +73,7 @@
<div class="form-container" id="listUsersForm">
<h1>List Users</h1>
<button type="button" onclick="listUsers()">List Users</button><br>
<br>
<table id="userListTable"></table>
</div>