summaryrefslogtreecommitdiffstats
path: root/LogReceiver/html/preload-debug.html
diff options
context:
space:
mode:
authorNiklas2011-09-21 16:59:09 +0200
committerNiklas2011-09-21 16:59:09 +0200
commit3b81d83bf449ef6242489805af15b7da7b197d58 (patch)
tree26f78d0c6321a11acccf6418deb557033268a28c /LogReceiver/html/preload-debug.html
parentthe checkConnectivity method is working now. we use the rtnl functions of the... (diff)
downloadfbgui-3b81d83bf449ef6242489805af15b7da7b197d58.tar.gz
fbgui-3b81d83bf449ef6242489805af15b7da7b197d58.tar.xz
fbgui-3b81d83bf449ef6242489805af15b7da7b197d58.zip
gui is now html based. still some problems with the jQuery stuff. it does not display anything.
Diffstat (limited to 'LogReceiver/html/preload-debug.html')
-rw-r--r--LogReceiver/html/preload-debug.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/LogReceiver/html/preload-debug.html b/LogReceiver/html/preload-debug.html
new file mode 100644
index 0000000..29d7391
--- /dev/null
+++ b/LogReceiver/html/preload-debug.html
@@ -0,0 +1,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>