valde/templates/spe.html

25 lines
480 B
HTML
Raw Normal View History

2024-01-25 23:08:03 +00:00
<!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>