WIP file drop server, no downloads yet

This commit is contained in:
xenofem 2022-04-26 23:54:29 -04:00
commit 20da86132b
12 changed files with 3294 additions and 0 deletions

22
static/index.html Normal file
View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="transbeam.css"/>
<title>Upload Test</title>
</head>
<body>
<div>
<label>
<span class="fake_button" id="file_input_message">Select files to upload...</span>
<input type="file" multiple id="file_input"/>
</label>
</div>
<button id="upload" disabled>Upload</button>
<h2>Files selected:</h2>
<ul id="file_list">
</ul>
<script src="upload.js"></script>
</body>
</html>