Riskless/templates/index.html

36 lines
1.2 KiB
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="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>
<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>
<script src="{{ url_for('static', filename='js/barrier.js') }}"></script>
<script src="{{ url_for('static', filename='js/packet.js') }}"></script>
</head>
<body>
<div id="players">
<strong>Players</strong>
<ul id="playerList">
</ul>
</div>
<div id="turn-title">
<span class="current-player"></span>'s Turn!
</div>
<div id="ready">
<button id="ready-button">Not ready</button>
</div>
</body>
</html>