AppFlowy-Cloud/admin_frontend/templates/admin.html

17 lines
374 B
HTML

<!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 () {
// Redirect to the users page.
window.location.href = "/web/admin/users";
});
</script>
</body>
</html>