|
<!doctype html>
|
|
<html lang="en">
|
|
<body>
|
|
<h1>Welcome to the Admin Page</h1>
|
|
<button id="usersBtn">Users</button>
|
|
|
|
<script>
|
|
document
|
|
.getElementById("usersBtn")
|
|
.addEventListener("click", function () {
|
|
window.location.href = "/web/admin/users";
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|