2024-06-14 14:57:55 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Transfer.coffee</title>
|
2024-06-14 15:53:35 +00:00
|
|
|
<link rel="stylesheet" href="/css/style.css" />
|
2024-06-14 15:58:08 +00:00
|
|
|
<script src="/js/webtorrent.min.js"></script>
|
2024-06-14 14:57:55 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<h1>Transfer.coffee</h1>
|
2024-06-15 07:27:23 +00:00
|
|
|
<div class="section" id="uploadSection">
|
2024-06-14 15:34:36 +00:00
|
|
|
<h2>Share File</h2>
|
2024-06-14 14:57:55 +00:00
|
|
|
<input type="file" id="fileInput" />
|
2024-06-14 15:34:36 +00:00
|
|
|
<button onclick="uploadFile()">Share</button>
|
2024-06-14 14:57:55 +00:00
|
|
|
<div class="result" id="uploadResult"></div>
|
2024-06-15 07:27:23 +00:00
|
|
|
<div class="result" id="uploadStats"></div>
|
2024-06-15 12:41:39 +00:00
|
|
|
<button id="copyButton" style="display: none;" onclick="copyToClipboard()">Copy URL</button>
|
2024-06-14 14:57:55 +00:00
|
|
|
</div>
|
2024-06-15 07:27:23 +00:00
|
|
|
<div class="section" id="downloadSection">
|
2024-06-14 16:32:51 +00:00
|
|
|
<h2>Receive File</h2>
|
2024-06-14 14:57:55 +00:00
|
|
|
<input type="text" id="mnemonicInput" placeholder="Enter mnemonic" />
|
2024-06-15 12:41:39 +00:00
|
|
|
<button id="downloadButton" onclick="downloadFile()">Receive</button>
|
2024-06-14 14:57:55 +00:00
|
|
|
<div class="progress" id="downloadProgress">
|
|
|
|
<div class="progress-bar" id="downloadProgressBar">0%</div>
|
|
|
|
</div>
|
|
|
|
<div class="result" id="downloadResult"></div>
|
2024-06-15 12:41:39 +00:00
|
|
|
<div class="result" id="downloadStats"></div>
|
|
|
|
|
2024-06-14 14:57:55 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-06-15 07:27:23 +00:00
|
|
|
<script>
|
|
|
|
const trackerUrl = "<%= trackerUrl %>";
|
2024-06-15 12:41:39 +00:00
|
|
|
<% if (typeof mnemonic !== 'undefined') { %>
|
|
|
|
const mnemonic = "<%= mnemonic %>";
|
|
|
|
<% } %>
|
2024-06-15 07:27:23 +00:00
|
|
|
</script>
|
2024-06-14 15:53:35 +00:00
|
|
|
<script src="/js/index.js"></script>
|
2024-06-14 14:57:55 +00:00
|
|
|
</body>
|
|
|
|
</html>
|