summaryrefslogtreecommitdiffstats
path: root/src/html/preload-debug.html
diff options
context:
space:
mode:
authorNiklas Goby2011-04-18 09:43:34 +0200
committerNiklas Goby2011-04-18 09:43:34 +0200
commitd113dab715cea7e6f3da0a0a6e650298a6acc032 (patch)
tree65873adce9fa6401026b1b4c89f12a1e8868e3c2 /src/html/preload-debug.html
parentstarted to write a function for getting all available network (diff)
parentuniformed formatting... (diff)
downloadfbgui-d113dab715cea7e6f3da0a0a6e650298a6acc032.tar.gz
fbgui-d113dab715cea7e6f3da0a0a6e650298a6acc032.tar.xz
fbgui-d113dab715cea7e6f3da0a0a6e650298a6acc032.zip
Merge branch 'master' of git.openslx.org:lsfks/master-teamprojekt/fbgui
Conflicts: src/sysinfo.h
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>