blob: 86581829259936a091628d39affc98470a2765ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<link rel='stylesheet' href='/stylesheets/style.css' />
<script src="/socket.io/socket.io.js"></script>
<script src="/javascripts/vendor/jquery-1.9.0.min.js"></script>
<script src="/javascripts/vendor/jquery-ba-throttle.js"></script>
<script src="/javascripts/util.js"></script>
<script src="/javascripts/game.js"></script>
<% if (currentUser) { %>
<style>
body {
/*
cursor:url(https://s3.amazonaws.com/luckyplop/52d5f60fde3d8562ad566838e0e09ca52725bb09.gif), default;
*/
cursor: url(/images/transparent.png), none;
}
</style>
<script type="text/javascript">
$(function(){
window._id = "<%= currentUser._id %>";
game.init();
});
</script>
<% } else { %>
<script type="text/javascript">
$(function(){
window._id = null;
game.init();
});
</script>
<% } %>
</head>
<body>
<h1>WAIT SITE</h1>
<h2>Waiting Alone Together</h2>
<!--
<div>You've been waiting for <span id="waiting">0 seconds</span><br>
<span id="reset"></span></div>
<div><span id="count">0</span> ppl online now!!</div>
<div id="really_waiting">FOCUS</div>
<p>currently waiting</p>
<ol id="users"></ol>
-->
<header>
<h3>high scores</h3>
<ol id="scores"></ol>
<% if (!currentUser) { %>
<a href="/auth/facebook"class="fbutton"></a><br>
<% } %>
</header>
<a href="mailto:frontdesk@okfoc.us?subject=hello OKFocus" class="okfocus"><img src="/images/okfocus_logo.png" alt="OKFocus"><br>hire us!</a>
<div id="cursors"></div>
</body>
</html>
|