forked from hackerdojo/hd-kiosk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
41 lines (37 loc) · 1.62 KB
/
main.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" rel="stylesheet" href="/static/style.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" src="/static/main.js"></script>
<title>Hacker Dojo Kiosk</title>
</head>
<body id="body">
<div id="top">
<table width="100%"><tr>
<td>
<img class="jiggle" src="/static/logo345.png" width="345" height="122" alt="Hacker Dojo" />
</td>
<td>
<h1 class="jiggle">Welcome to Hacker Dojo</h1>
<h3 id="motd" class="jiggle">Please sign in at the main desk :)</h3>
</td>
</tr></table>
</div>
<div id="left">
<div class="jiggle" style="height:100%">
<h2 class="sectionhead">Currently Staffing</h2>
<div class="reloadcount" id="staffReloadCount"> 0</div>
<iframe style="border:none" id="staff" border="0" height="80%" width="100%" src="http://hackerdojo-signin.appspot.com/staff"></iframe>
</div>
</div>
<div id="right">
<div class="jiggle" style="height:100%">
<h2 class="sectionhead">Schedule</h2>
<div class="reloadcount" id="eventsReloadCount"> 0</div>
<iframe id="events" src="http://events.hackerdojo.com/?base=mini" style="border-width:0;" width="100%" height="90%" frameborder="0" scrolling="no"></iframe>
</div>
</div>
</body>
</html>