summaryrefslogtreecommitdiffstats
path: root/src/html/preload-debug.html
blob: cc69aa14b4b148613f2728443eefc811b84f9da5 (plain) (blame)
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
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript">
function gogo(){
    fbgui.trigger();
}
function quitgui(){
    fbgui.quit();
}
</script>
</head>
<body>
<div id="top">
  <h1>Preboot GUI</h1>
  <input type="button" name="quit" value="quit"
         style="font-size:75%"
         onclick="quitgui()">
  <p>Waiting on internet...i
  <input type="button" name="go" value="click me"
         style="font-size:75%"
         onclick="gogo()">
  </p>
</div>
<div id="container">
  <div id="footer-spacer"></div>
</div>
<div id="footer">
  <p>RZ Uni Freiburg, 2011</p>
</div>
</body>
</html>