aboutsummaryrefslogtreecommitdiff
path: root/webAO
diff options
context:
space:
mode:
authorcraftxbox <craftxbox@craftxbox.com>2021-02-07 19:17:35 -0330
committerGitHub <noreply@github.com>2021-02-07 19:17:35 -0330
commite73ac46480b2c2e34ea7af71d75a466d0680b7fb (patch)
tree94c87a59a163d8ab8b314c1bc3751f6035738133 /webAO
parent9597d50f00764749636d14c92055c7cfea76ff52 (diff)
move bars and text input out of misc panel
Diffstat (limited to 'webAO')
-rw-r--r--webAO/client.html22
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&hellip;" 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&hellip;" 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>