dashboard #2

Merged
v4l3n71n merged 46 commits from dashboard into master 2022-08-25 21:40:00 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit e86a4aa0cf - Show all commits

View File

@ -148,7 +148,7 @@
<h2>Section title</h2>
<div class="table-responsive">
<table class="table table-striped table-sm">
<table id=users class="table table-striped table-sm">
<thead>
<tr>
<th scope="col">#</th>

View File

@ -9,6 +9,7 @@ axios.interceptors.request.use(function (config) {
});
instance.get("users/count", { withCredentials: true }).then(function(response){
console.log(response.data);
var countTable = document.getElementById("users").querySelector("tbody").querySelectorAll("tr").length;
})