diff --git a/web/html/home.html b/web/html/home.html index d02b88b..bf0b13e 100644 --- a/web/html/home.html +++ b/web/html/home.html @@ -148,7 +148,7 @@
# | diff --git a/web/js/home.js b/web/js/home.js index 2f0d7ed..202552d 100644 --- a/web/js/home.js +++ b/web/js/home.js @@ -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; + }) \ No newline at end of file
---|