transbeam/static/index.html

46 lines
1.5 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-28 00:12:40 -04:00
<title>transbeam</title>
2022-04-26 23:54:29 -04:00
</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;">
2022-04-28 03:24:05 -04:00
<div id="download_link_main">
<div>Download link: <span id="download_link"></span></div><div class="copy_button"></div>
</div>
<div id="copied_message" style="display: none;">Copied!</div>
2022-04-27 23:52:45 -04:00
</div>
<div id="progress_container" style="display: none;">
<div id="progress"></div>
2022-04-28 02:28:10 -04:00
<div id="progress_bar"></div>
2022-04-27 23:52:45 -04:00
</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>