diff options
| author | sD <stoned@derpymail.org> | 2020-02-12 12:36:20 +0100 |
|---|---|---|
| committer | sD <stoned@derpymail.org> | 2020-02-12 12:36:20 +0100 |
| commit | 95d8907f492c70c83a97e13d04a55c09473402c0 (patch) | |
| tree | 5d0dc5bc848f8efb0ad4556f5fd5f1b1f5a21467 | |
| parent | 96f8cc850963be9a349b240b96dd4a78d0b76aa3 (diff) | |
edge doesn't like template as first tag
| -rw-r--r-- | webAO/client.html | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/webAO/client.html b/webAO/client.html index c634bbe..2aa8877 100644 --- a/webAO/client.html +++ b/webAO/client.html @@ -16,6 +16,28 @@ <script src="client.b.js?v=1.0.0"></script> </head> +<body> + <span id="sound"></span> + <div id="here"></div> + <div id="client_loading"> + <h1 id="client_loadingtext">Loading</h1> + <button class="client_reconnect" onclick="ReconnectButton()">Reconnect</button> + </div> + <div id="client_charselect"> + <div id="client_chartable_container"> + <table id="client_chartable"></table> + <button onclick="pickChar(1001)">Spectate</button> + </div> + </div> + <div id="client_error" class="error" style="display: none"> + <h1 id="client_errortext">You were disconnected from the server.</h1> + <p>Code: + <span id="error_id">(none)</span> + </p> + <button class="client_reconnect" onclick="ReconnectButton()">Reconnect</button> + </div> +</body> + <template id="client_wrapper"> <meta name="frame-title" lang="en" content="Game"> <div id="client_icwrapper"> @@ -331,26 +353,4 @@ </select> </template> -<body> - <span id="sound"></span> - <div id="here"></div> - <div id="client_loading"> - <h1 id="client_loadingtext">Loading</h1> - <button class="client_reconnect" onclick="ReconnectButton()">Reconnect</button> - </div> - <div id="client_charselect"> - <div id="client_chartable_container"> - <table id="client_chartable"></table> - <button onclick="pickChar(1001)">Spectate</button> - </div> - </div> - <div id="client_error" class="error" style="display: none"> - <h1 id="client_errortext">You were disconnected from the server.</h1> - <p>Code: - <span id="error_id">(none)</span> - </p> - <button class="client_reconnect" onclick="ReconnectButton()">Reconnect</button> - </div> -</body> - </html> |
