diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-05-10 16:51:20 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-05-10 16:51:20 +0200 |
commit | 5b32a4415c9776dd6cae859c8d718b5e68f01d81 (patch) | |
tree | 9c9684367a1d415b1d836065daca2e8789fcd1a5 /plugins/webbox/html/index.html | |
parent | eb7c96f1ee9cf3eff2dd86f2a1b6ea46a80e41c8 (diff) |
Move webbox to root to make index
Diffstat (limited to 'plugins/webbox/html/index.html')
-rw-r--r-- | plugins/webbox/html/index.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/plugins/webbox/html/index.html b/plugins/webbox/html/index.html index e9ea819..cc1cf12 100644 --- a/plugins/webbox/html/index.html +++ b/plugins/webbox/html/index.html @@ -4,22 +4,23 @@ <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Webbox</title> - <link rel="stylesheet" type="text/css" href="webbox.css"/> - <script src="webbox.js"></script> + <link rel="stylesheet" type="text/css" href="webbox-html/webbox.css"/> + <link rel="shortcut icon" href="webbox-html/favicon.ico" type="image/x-icon"/> + <script src="webbox-html/webbox.js"></script> </head> <body onload="initMainpage();"> <div> <table> <tr> <td class="title">Webbox</td> - <td class="menusymbol" onclick="showMenu();"><img src="menu.png" alt=""/></td> + <td class="menusymbol" onclick="showMenu();"><img src="webbox-html/menu.png" alt=""/></td> </tr> </table> <input id="uploadfile" type="file" onchange="onUploadFile();" multiple hidden/> <table class="menu"> <tr> <td class="firsttd"></td> - <td class="entry" onclick="refresh();"><img src="refresh-inverted.png" alt=""/></td> + <td class="entry" onclick="refresh();"><img src="webbox-html/refresh-inverted.png" alt=""/></td> </tr> </table> </div> |