harmony/pkg/web/public/index.html

56 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>#lobby - harmony</title>
<link rel="stylesheet" href="assets/css/harmony.css">
<script src="assets/js/jquery.js"></script>
<script src="assets/js/harmony.js"></script>
</head>
<body>
<table style="width: 100%; height: 100%;">
<tr>
<td id="chatcontainer" colspan="2">
<div id="chathistory"></div>
<div id="stats"></div>
</td>
</tr>
<tr id="inputheader">
<td colspan="2">
<hr style="color: #eeeeee;">
</td>
</tr>
<tr style="height: 65px;">
<td id="inputcontainer" colspan="2"><textarea id="chatinput" placeholder="Message #lobby" rows="2"></textarea></td>
</tr>
<tr id="inputfooter">
<td colspan="2">
<hr style="color: #777777;margin: 0; padding: 0;">
</td>
</tr>
<tr id="voicepttcontainer" style="display: none;">
<td colspan="2">
<button id="voiceptt">Push-To-Talk</button>
</td>
</tr>
<tr style="height: 60px;">
<td>
<div id="voiceinactiveleft">
<button id="voiceButtonJoin">Join voice chat</button>
</div>
<div id="voiceactiveleft" style="display: none;"></div>
</td>
<td align="right">
<div id="voiceinactiveright" style="">
&nbsp;
</div>
<div id="voiceactiveright" style="display: none;">
<button id="voiceButtonQuit">Quit voice chat</button>
</div>
</td>
</tr>
</table>
<div style="display: none" id="hidden">
</div>
</body>
</html>