diff options
Diffstat (limited to 'html/index.html')
| -rw-r--r-- | html/index.html | 13 | 
1 files changed, 11 insertions, 2 deletions
| diff --git a/html/index.html b/html/index.html index 3cb221d..49dafef 100644 --- a/html/index.html +++ b/html/index.html @@ -8,7 +8,7 @@  	</head>  	<body onload="initMainpage();">  		<div> -			<h1 class="title"></h1> +			<h1 class="title"> </h1>  			<input id="uploadfile" type="file" onchange="onUploadFile();" hidden/>  			<table class="menu">  				<tr> @@ -16,7 +16,7 @@  					<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="deleteItems();">Delete</td>  					<td class="entry" onclick="move();">Move</td>  					<td class="entry" onclick="info();">Info</td>  					<td class="entry" onclick="selectAll();">Select All</td> @@ -49,6 +49,15 @@  			Download multiple files as ZIP?<br>  		</div> +		<div id="move-dialog" hidden> +			Moving files to folder:<br> +			<input type="text" id="movedir" class="textinput"></input> +			<br/> +			Files to move: +			<br/> +			<div id="movefiles"></div> +		</div> +  		<a download="webbox-download.zip" id="download-a" hidden/>  		<div class="footer"> | 
