summaryrefslogtreecommitdiffstats
path: root/src/html/preload-debug.html
diff options
context:
space:
mode:
authorJonathan Bauer2011-04-16 13:12:13 +0200
committerJonathan Bauer2011-04-16 13:12:13 +0200
commit4378d39ea8866b9446685cb6140bc632d22a9a16 (patch)
tree284d48dc626888b61c9a267a069026d0cdffa29b /src/html/preload-debug.html
parentfixes & misc (diff)
downloadfbgui-4378d39ea8866b9446685cb6140bc632d22a9a16.tar.gz
fbgui-4378d39ea8866b9446685cb6140bc632d22a9a16.tar.xz
fbgui-4378d39ea8866b9446685cb6140bc632d22a9a16.zip
cursor hidden by QWSServer, added loading animation for preload page, started preload-debug page
Diffstat (limited to 'src/html/preload-debug.html')
-rw-r--r--src/html/preload-debug.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/html/preload-debug.html b/src/html/preload-debug.html
new file mode 100644
index 0000000..cc69aa1
--- /dev/null
+++ b/src/html/preload-debug.html
@@ -0,0 +1,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>