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