summaryrefslogtreecommitdiffhomepage
path: root/html/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/index.html')
-rw-r--r--html/index.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/html/index.html b/html/index.html
new file mode 100644
index 0000000..023b8bc
--- /dev/null
+++ b/html/index.html
@@ -0,0 +1,57 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8"/>
+ <title>Webbox</title>
+ <link rel="stylesheet" type="text/css" href="webbox.css"/>
+ <script src="webbox.js"></script>
+ </head>
+ <body onload="initMainpage();">
+ <div>
+ <h1 class="title"></h1>
+ <input id="uploadfile" type="file" onchange="onUploadFile();" hidden/>
+ <table class="menu">
+ <tr>
+ <td class="firsttd"></td>
+ <td class="entry" onclick="createDir();">New folder</td>
+ <td class="entry" onclick="download();">Download</td>
+ <td class="entry" onclick="upload();">Upload</td>
+ <td class="entry" onclick="deleteItem();">Delete</td>
+ <td class="entry" onclick="move();">Move</td>
+ <td class="entry" onclick="info();">Info</td>
+ <td class="entry" onclick="selectAll();">Select All</td>
+ </tr>
+ </table>
+ </div>
+ <div id="list">
+ </div>
+
+ <div id="debug1">
+ </div>
+
+ <div class="greyout fullscreen" id="greyout" hidden>
+ </div>
+
+ <div class="dialogwindow" id="dialogwindow" hidden>
+ <div id="dialog" class="dialog">
+ </div>
+ <button class="button leftbutton" id="cancelbutton">Cancel</button>
+ <button class="button rightbutton" id="okbutton">OK</button>
+ </div>
+
+ <div id="create-dir-dialog" hidden>
+ New folder:<br>
+ <input type="text" id="newdir" class="textinput"></input>
+ </div>
+
+ <div id="download-zip-dialog" hidden>
+ Download multiple files as ZIP?<br>
+ </div>
+
+ <a download="webbox-download.zip" id="download-a" hidden/>
+
+ <div class="footer">
+ </div>
+ </body>
+</html>
+