2011-11-21 22:02:11 -07:00
|
|
|
<!DOCTYPE html>
|
2011-12-07 21:47:58 -07:00
|
|
|
<!--
|
2014-01-20 23:19:07 -07:00
|
|
|
Woozle Roller Derby Scoreboard
|
2014-01-18 23:33:43 -07:00
|
|
|
Copyright © 2014 Neale Pickett <neale@woozle.org>
|
2011-12-07 21:47:58 -07:00
|
|
|
|
2014-01-18 23:33:43 -07:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2011-12-07 21:47:58 -07:00
|
|
|
|
2014-01-18 23:33:43 -07:00
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
General Public License for more details.
|
2011-12-07 21:47:58 -07:00
|
|
|
|
2014-01-18 23:33:43 -07:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2011-12-07 21:47:58 -07:00
|
|
|
-->
|
2011-11-21 22:02:11 -07:00
|
|
|
<html>
|
2013-04-13 00:37:39 -06:00
|
|
|
<head>
|
2014-01-20 23:19:07 -07:00
|
|
|
<title>Woozle Scoreboard</title>
|
2013-04-13 00:37:39 -06:00
|
|
|
<meta charset="utf-8">
|
2014-02-06 22:25:21 -07:00
|
|
|
<link rel="stylesheet" type="text/css" href="scoreboard.css">
|
2014-02-14 22:17:37 -07:00
|
|
|
<script type="text/javascript" src="kitty.js"></script>
|
2014-02-06 22:25:21 -07:00
|
|
|
<script type="text/javascript" src="scoreboard.js"></script>
|
2013-04-13 00:37:39 -06:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="scoreboard">
|
2014-02-15 16:30:08 -07:00
|
|
|
<div class="team" id="team-a">
|
2014-02-15 17:06:58 -07:00
|
|
|
<span class="jammer" id="jammer-a">★</span>
|
|
|
|
<input class="name" id="name-a" value="HOME">
|
2014-02-15 11:32:00 -07:00
|
|
|
<div class="logo" id="logo-a">
|
2014-02-14 22:17:37 -07:00
|
|
|
<img class="img" id="img-a" src="" alt="A">
|
2014-02-15 11:32:00 -07:00
|
|
|
<canvas class="kitty" id="kitty-a"></canvas>
|
|
|
|
<input type="color" class="setup color" id="color-a" value="#666666">
|
|
|
|
<input type="image" class="setup load" id="load-a" src="ic_picture.png">
|
|
|
|
</div>
|
2013-11-02 09:47:46 -06:00
|
|
|
<span class="score" id="score-a">-</span>
|
2014-02-15 17:06:58 -07:00
|
|
|
<span class="timeouts" id="timeouts-a">3</span>
|
2014-02-15 11:32:00 -07:00
|
|
|
</div>
|
2012-07-06 18:30:37 -06:00
|
|
|
|
2014-02-15 16:30:08 -07:00
|
|
|
<div class="team" id="team-b">
|
2014-02-15 17:06:58 -07:00
|
|
|
<span class="jammer" id="jammer-b">★</span>
|
|
|
|
<input class="name" id="name-b" value="HOME">
|
2014-02-15 11:32:00 -07:00
|
|
|
<div class="logo" id="logo-b">
|
2014-02-14 22:17:37 -07:00
|
|
|
<img class="img" id="img-b" src="" alt="B">
|
2014-02-15 11:32:00 -07:00
|
|
|
<canvas class="kitty" id="kitty-b"></canvas>
|
|
|
|
<input type="color" class="setup color" id="color-b" value="#ffffff">
|
|
|
|
<input type="image" class="setup load" id="load-b" src="ic_picture.png">
|
|
|
|
</div>
|
2014-02-14 22:17:37 -07:00
|
|
|
<span class="score" id="score-b">-</span>
|
2014-02-15 17:06:58 -07:00
|
|
|
<span class="timeouts" id="timeouts-b">3</span>
|
2014-02-15 11:32:00 -07:00
|
|
|
</div>
|
2014-02-14 22:17:37 -07:00
|
|
|
|
2014-02-15 16:30:08 -07:00
|
|
|
<div class="clocks">
|
2014-01-19 18:25:38 -07:00
|
|
|
<input id="period" value="--:--">
|
2013-11-02 09:47:46 -06:00
|
|
|
<span id="periodtext"></span>
|
2014-02-14 22:17:37 -07:00
|
|
|
<span class="setup" id="preset">-</span>
|
2014-01-19 18:25:38 -07:00
|
|
|
<input id="jam" value="-:--">
|
2013-11-02 09:47:46 -06:00
|
|
|
<span id="jamtext"></span>
|
2014-02-15 11:32:00 -07:00
|
|
|
</div>
|
2013-04-13 00:37:39 -06:00
|
|
|
</div>
|
2011-12-09 21:28:31 -07:00
|
|
|
|
2013-04-13 00:37:39 -06:00
|
|
|
<div id="notice">
|
|
|
|
</div>
|
2014-01-18 21:53:52 -07:00
|
|
|
|
2014-02-14 22:17:37 -07:00
|
|
|
<img id="close" src="close-icon-white.png" title="Close Scoreboard">
|
2014-01-18 21:53:52 -07:00
|
|
|
|
2013-04-13 00:37:39 -06:00
|
|
|
</body>
|
2011-11-21 22:02:11 -07:00
|
|
|
</html>
|