index.htmlon commit fix threading bugs, add further HTML controls (384420f)
   1<!DOCTYPE html>
   2<html>
   3        <head>
   4        <link href="style.css" rel="stylesheet" type="text/css" media="all" />
   5        <script src="settings.js"></script>
   6        <title>ppt-control</title>
   7    </head>
   8    <body onload="initSettings();">
   9        <div id="img_container">
  10                <div id="current_div">
  11                        <h1>Current slide</h1>
  12                        <img id="current_img" src="/black.jpg" />
  13                </div>
  14                <div id="next_div">
  15                        <h1>Next slide</h1>
  16                        <img id="next_img" src="/black.jpg" />
  17                </div>
  18        </div>
  19
  20                <div id="controls_container">
  21                <p>
  22                        <button id="prev">Prev</button>
  23                        <button id="next">Next</button>
  24                        <button id="first">First</button>
  25                        <button id="last">Last</button>
  26                        <button id="black">Black</button>
  27                        <button id="white">White</button>
  28                                <span id="count"><span id="slide_label">Current: </span><input type="text" id="current"></input>/<span id="total">?</span></span>
  29                </p>
  30
  31                <input type="checkbox" checked="true" id="show_current">Show current slide</input>
  32                <input type="checkbox" checked="true" id="show_next">Show next slide</input>
  33
  34                <p class="users">Not connected</p>
  35        </div>
  36
  37        <script src="ppt-control.js"></script>
  38
  39    </body>
  40</html>