25 lines
480 B
HTML
25 lines
480 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf8" />
|
|
<title>Admin</title>
|
|
<style>
|
|
body {
|
|
background : #222;
|
|
color : #aaa;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<button id="action">Action</button>
|
|
<script src="static/js/lib/socket.io.js"></script>
|
|
<script>
|
|
const socket = io();
|
|
document.getElementById('action').addEventListener('click', () => {
|
|
socket.emit('action')
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|