<!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>
    </head>
    <body>

    <div id="players">
        <strong>Players</strong>
        <ul id="playerList">
        </ul>
    </div>

    <div id="ready">
        <button id="ready-button">Not ready</button>
    </div>

    </body>
</html>