-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathhomepage.html
31 lines (31 loc) · 1.04 KB
/
homepage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Share file</title>
<script src="/assets/homepage.js" defer></script>
<link rel="stylesheet" href="/assets/homepage.css" />
<link rel="icon" href="data:;" />
</head>
<body>
<h1>Share your files</h1>
<div id="history-link"><a class="link-like">history</a></div>
<div id="share-history"></div>
<div id="sharing">
<table id="file-table">
<tbody id="file-list"></tbody>
</table>
<button id="select-button" class="action-button">
Choose files
</button>
<button id="upload-button" class="action-button" disabled>
Upload
</button>
</div>
<div id="main-display"></div>
<footer>
Powered by <a href="https://github.com/yuudi/onesend">OneSend</a>
</footer>
</body>
</html>