Riskless/templates/index.html
jude 8e22d37b64 Show the players
Send keepalive pings. Remove players who haven't sent pings.
2023-01-14 16:59:11 +00:00

21 lines
479 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Riskless</title>
<link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet">
<script src="https://cdn.socket.io/4.5.4/socket.io.min.js"></script>
<script src="{{ url_for('static', filename='js/index.js') }}"></script>
</head>
<body>
<div id="players">
<strong>Players</strong>
<ul id="playerList">
</ul>
</div>
</body>
</html>