drop.chapril.org-firefoxsend/views/download.handlebars

64 lines
1.5 KiB
Handlebars
Raw Normal View History

2017-05-30 18:24:16 +02:00
<!DOCTYPE html>
<html>
<head>
2017-06-06 23:23:10 +02:00
<title>Download your file</title>
2017-06-22 23:50:57 +02:00
{{> sentry dsn=dsn}}
2017-06-06 23:23:10 +02:00
<script src="/bundle.js"></script>
<link rel="stylesheet" href="https://code.cdn.mozilla.net/fonts/fira.css" />
2017-06-06 23:23:10 +02:00
<link rel="stylesheet" type="text/css" href="/main.css" />
{{#if shouldRenderAnalytics}}
{{> analytics trackerId=trackerId}}
{{/if}}
2017-05-30 18:24:16 +02:00
</head>
<body>
2017-06-06 23:23:10 +02:00
<div class="main-window">
<div id="download">
{{#if filename}}
2017-06-06 23:23:10 +02:00
<div class="title">
2017-06-09 19:21:22 +02:00
Your friend is sending you a file: <br />
2017-06-09 15:45:06 +02:00
{{{filename}}} ({{{filesize}}})
2017-06-06 23:23:10 +02:00
</div>
2017-06-20 21:23:12 +02:00
<div id="download-page-one">
<div>
<button id="download-btn" onclick="download()">Download File</button>
</div>
</div>
2017-06-20 21:23:12 +02:00
<div id="download-progress">
<div id="download-text">
Downloading File...
</div>
<div class="upload">
<!-- progress bar here -->
<div id="progress-bar"></div>
<div id="progress-text"></div>
</div>
2017-06-06 23:23:10 +02:00
</div>
2017-06-20 21:23:12 +02:00
2017-06-06 23:31:07 +02:00
<div class="send-new" id="send-file">
2017-06-06 23:23:10 +02:00
Send your own files
</div>
2017-06-20 21:23:12 +02:00
{{else}}
2017-06-20 21:23:12 +02:00
<div class="title">
This link has expired or never existed in the first place.
</div>
<div class="share-window">
2017-06-09 19:21:22 +02:00
<img src="/resources/link_expired.png" alt="Link expired" />
</div>
<div class="send-new" id="send-file">
Send your own files
</div>
{{/if}}
2017-06-06 23:23:10 +02:00
</div>
</div>
2017-05-30 18:24:16 +02:00
2017-06-06 23:23:10 +02:00
<!-- <ul id="downloaded_files">
2017-06-20 21:23:12 +02:00
</ul> -->
2017-05-30 18:24:16 +02:00
</body>
2017-06-06 23:23:10 +02:00
</html>