renamed report and make it default tab.

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-01-14 11:51:57 -07:00
parent 2fb24b8b65
commit 7122f4ac0d
6 changed files with 107 additions and 101 deletions

View File

@@ -56,8 +56,8 @@
<thead>
<tr class="d-flex">
<th scope="col" class="col-4">Username</th>
<th scope="col" class="col-4">Email</th>
<th scope="col" class="col-2">Is Admin</th>
<th scope="col" class="col-4">Reset Password</th>
<th scope="col" class="col-2">Delete</th>
</tr>
</thead>
@@ -66,8 +66,8 @@
{
<tr class="d-flex" style="cursor:pointer;">
<td class="col-4">@userData.UserName</td>
<td class="col-4">@userData.EmailAddress</td>
<td class="col-2">@userData.Id</td>
<td class="col-4">@userData.Id</td>
<td class="col-2"><button type="button" class="btn btn-danger" onclick="deleteUser(@userData.Id, this)"><i class="bi bi-trash"></i></button></td>
</tr>
}
@@ -77,6 +77,7 @@
</div>
</div>
<script>
function reloadPage() {
window.location.reload();
}