2024-09-26 19:44:03 +07:00
|
|
|
<div class="container mb-5">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<h1 class="h3">Users</h1>
|
|
|
|
<input type="hidden" id="form-token" value="${token}">
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-sm table-bordered table-striped" id="table-users" width="100%" cellspacing="0">
|
|
|
|
<thead class="table-primary">
|
|
|
|
<tr>
|
|
|
|
<th>ID</th>
|
|
|
|
<th>Username</th>
|
|
|
|
<th>Email</th>
|
|
|
|
<th>Phone</th>
|
|
|
|
<th>Roles</th>
|
|
|
|
<th>Verification</th>
|
|
|
|
<th>Action</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody></tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<!-- End table-responsive -->
|
|
|
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
|
|
<script src="https://cdn.datatables.net/1.13.5/js/jquery.dataTables.min.js"></script>
|
|
|
|
<script src="https://cdn.datatables.net/1.13.5/js/dataTables.bootstrap5.min.js"></script>
|
2024-09-26 12:18:14 +07:00
|
|
|
|
2024-09-26 19:44:03 +07:00
|
|
|
<script type="text/javascript" src="/js/carrack.js"></script>
|
|
|
|
<script type="text/javascript" src="/js/dashboard/users.js"></script>
|
|
|
|
</div>
|
|
|
|
<!-- End col -->
|
2024-09-26 12:18:14 +07:00
|
|
|
</div>
|
2024-09-26 19:44:03 +07:00
|
|
|
<!-- End row -->
|
2024-09-26 12:18:14 +07:00
|
|
|
</div>
|
2024-09-26 19:44:03 +07:00
|
|
|
<!-- End container -->
|