Riskless/templates/index.html

30 lines
988 B
HTML
Raw Normal View History

2022-12-26 14:13:02 +00:00
<!DOCTYPE html>
2022-12-29 14:11:18 +00:00
<html lang="en">
2022-12-26 14:13:02 +00:00
<head>
2022-12-29 14:11:18 +00:00
<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>
2023-01-29 16:47:37 +00:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js"></script>
<script src="{{ url_for('static', filename='js/shim.js') }}"></script>
2023-01-31 12:34:13 +00:00
<script src="{{ url_for('static', filename='js/index.js') }}"></script>
<script src="{{ url_for('static', filename='js/player.js') }}"></script>
<script src="{{ url_for('static', filename='js/dom.js') }}"></script>
<script src="{{ url_for('static', filename='js/random.js') }}"></script>
2022-12-26 14:13:02 +00:00
</head>
<body>
<div id="players">
<strong>Players</strong>
<ul id="playerList">
</ul>
</div>
<div id="ready">
<button id="ready-button">Not ready</button>
</div>
2022-12-26 14:13:02 +00:00
</body>
</html>