Wrap the users page with container
This commit is contained in:
parent
cf10e4ec8e
commit
e966b1e7bf
@ -1,31 +1,34 @@
|
|||||||
<div class="row">
|
<div class="container mb-5">
|
||||||
<div class="col">
|
<div class="row">
|
||||||
<h1 class="h3">Users</h1>
|
<div class="col">
|
||||||
<input type="hidden" id="form-token" value="${token}">
|
<h1 class="h3">Users</h1>
|
||||||
<div class="table-responsive">
|
<input type="hidden" id="form-token" value="${token}">
|
||||||
<table class="table table-sm table-bordered table-striped" id="table-users" width="100%" cellspacing="0">
|
<div class="table-responsive">
|
||||||
<thead class="table-primary">
|
<table class="table table-sm table-bordered table-striped" id="table-users" width="100%" cellspacing="0">
|
||||||
<tr>
|
<thead class="table-primary">
|
||||||
<th>ID</th>
|
<tr>
|
||||||
<th>Username</th>
|
<th>ID</th>
|
||||||
<th>Email</th>
|
<th>Username</th>
|
||||||
<th>Phone</th>
|
<th>Email</th>
|
||||||
<th>Roles</th>
|
<th>Phone</th>
|
||||||
<th>Verification</th>
|
<th>Roles</th>
|
||||||
<th>Action</th>
|
<th>Verification</th>
|
||||||
</tr>
|
<th>Action</th>
|
||||||
</thead>
|
</tr>
|
||||||
<tbody></tbody>
|
</thead>
|
||||||
</table>
|
<tbody></tbody>
|
||||||
</div>
|
</table>
|
||||||
<!-- End table-responsive -->
|
</div>
|
||||||
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
<!-- End table-responsive -->
|
||||||
<script src="https://cdn.datatables.net/1.13.5/js/jquery.dataTables.min.js"></script>
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
||||||
<script src="https://cdn.datatables.net/1.13.5/js/dataTables.bootstrap5.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>
|
||||||
|
|
||||||
<script type="text/javascript" src="/js/carrack.js"></script>
|
<script type="text/javascript" src="/js/carrack.js"></script>
|
||||||
<script type="text/javascript" src="/js/dashboard/users.js"></script>
|
<script type="text/javascript" src="/js/dashboard/users.js"></script>
|
||||||
|
</div>
|
||||||
|
<!-- End col -->
|
||||||
</div>
|
</div>
|
||||||
<!-- End col -->
|
<!-- End row -->
|
||||||
</div>
|
</div>
|
||||||
<!-- End row -->
|
<!-- End container -->
|
||||||
|
Loading…
Reference in New Issue
Block a user