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; 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) ; border: 2px solid var(--primary) ;
} }

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