diff options
| author | craftxbox <craftxbox@craftxbox.com> | 2021-02-07 19:17:35 -0330 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-07 19:17:35 -0330 |
| commit | e73ac46480b2c2e34ea7af71d75a466d0680b7fb (patch) | |
| tree | 94c87a59a163d8ab8b314c1bc3751f6035738133 /webAO | |
| parent | 9597d50f00764749636d14c92055c7cfea76ff52 (diff) | |
move bars and text input out of misc panel
Diffstat (limited to 'webAO')
| -rw-r--r-- | webAO/client.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/webAO/client.html b/webAO/client.html index b5bf968..1b6b9c2 100644 --- a/webAO/client.html +++ b/webAO/client.html @@ -102,18 +102,18 @@ <div id="client_trackstatus" style="display: none;"><p id="client_trackstatustext">None</p></div> </div> </div> + <input id="client_inputbox" class="long" type="text" onkeypress="onEnter(event)" + placeholder="Say something…" autocomplete="off"> + <div id="client_bars"> + <span id="client_defense_hp" class="health-box"> + <div class="health-bar"></div> + </span> + <span id="client_prosecutor_hp" class="health-box"> + <div class="health-bar"></div> + </span> + </div> <div id="client_iccontrols"> - <input id="client_inputbox" class="long" type="text" onkeypress="onEnter(event)" - placeholder="Say something…" autocomplete="off"> <meta name="frame-title" lang="en" content="miscellaneous"> - <div id="client_bars"> - <span id="client_defense_hp" class="health-box"> - <div class="health-bar"></div> - </span> - <span id="client_prosecutor_hp" class="health-box"> - <div class="health-bar"></div> - </span> - </div> <div id="client_emo"> </div> <br> @@ -524,4 +524,4 @@ </select> </template> -</html>
\ No newline at end of file +</html> |
