62 lines
1.6 KiB
HTML
Executable File
62 lines
1.6 KiB
HTML
Executable File
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
<script src="/js/stopwatch.js" type="text/javascript" charset="utf-8"></script>
|
|
|
|
<link href="/css/style-performer.css" rel="stylesheet">
|
|
<link href="/css/chat.css" rel="stylesheet">
|
|
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
<script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
|
|
<script src="/jquery-ui/js/jquery-ui-1.8.17.custom.min.js"></script>
|
|
|
|
<script src="/js/socket-ctrl.js"></script>
|
|
<script src="/js/movable.js"></script>
|
|
|
|
</head>
|
|
|
|
<body onload='rememberPosition();'>
|
|
|
|
<h3>Group One Score</h3>
|
|
<div id="announ"></div>
|
|
|
|
<div id="clientclock" class="ui-widget-content" style="z-index: 2;">.
|
|
|
|
<script type="text/javascript">
|
|
$('#clientclock').draggable({ stop: function (event, ui) {setCookie("clientclockX", ui.position.left, 200);
|
|
setCookie("clientclockY", ui.position.top, 100);} });
|
|
</script>
|
|
</div>
|
|
|
|
<div id="chat">
|
|
|
|
<script type="text/javascript">
|
|
$('#clientchat').draggable({ stop: function (event, ui) {setCookie("clientchatX", ui.position.left, 200);
|
|
setCookie("clientchatY", ui.position.top, 100);} });
|
|
</script>
|
|
|
|
<div id="nicknames"></div>
|
|
<div id="nickname">
|
|
<form id="set-nickname" class="wrap"><p>LOGIN:<br/>Enter Musician ID and Press Enter.</p>
|
|
<input id="nick"><p id="nickname-err">ID already in use</p></form>
|
|
</div>
|
|
|
|
<div id="messages">
|
|
<div id="lines"></div>
|
|
<form id="send-message"><input id="message"><button>Send</button></form>
|
|
</div></div>
|
|
|
|
<div id="content01" class="ui-widget-content" style="z-index: 1;">
|
|
<div id="content-txt">
|
|
|
|
<p> ... waiting for instructions from server... </p>
|
|
|
|
</div></div>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|