transbeam/static/index.html

45 lines
1.4 KiB
HTML
Raw Normal View History

2022-04-26 23:54:29 -04:00
<!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"/>
2022-04-27 23:52:45 -04:00
<script src="util.js"></script>
2022-04-26 23:54:29 -04:00
<title>Upload Test</title>
</head>
<body>
2022-04-27 23:52:45 -04:00
<div id="header">
<img src="transbeam.svg" height="128">
<h1>transbeam</h1>
</div>
<noscript>This page requires Javascript :(</noscript>
<button id="upload">Upload</button>
<div id="download_link_container" style="display: none;">
Download link: <span id="download_link"></span>
</div>
<div id="progress_container" style="display: none;">
<div id="progress"></div>
<div id="progress_bar">
<div id="progress_bar_filled"></div>
</div>
</div>
<div id="file_list_container" style="display: none;">
<table id="file_list">
</table>
</div>
<div id="file_input_container">
<label>
<input type="file" multiple id="file_input"/>
<span class="fake_button" id="file_input_message">Select files to upload...</span>
</label>
</div>
<div id="footer">
<h5>(c) 2022 xenofem, MIT licensed</h5>
2022-04-27 23:55:15 -04:00
<h5><a target="_blank" href="https://git.xeno.science/xenofem/transbeam">source</a></h5>
2022-04-27 23:52:45 -04:00
</div>
2022-04-28 00:12:20 -04:00
<script src="transbeam.js"></script>
2022-04-26 23:54:29 -04:00
</body>
</html>