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-24 05:01:32 +02:00
{{ # if dsn }}
{{ > sentry dsn = dsn }}
{{ / if }}
2017-06-06 23:23:10 +02:00
<script src="/bundle.js"></script>
<link rel="stylesheet" type="text/css" href="/main.css" />
2017-06-24 05:01:32 +02:00
{{ # if trackerId }}
2017-06-21 22:54:24 +02:00
{{ > analytics trackerId = trackerId }}
{{ / if }}
2017-05-30 18:24:16 +02:00
</head>
<body>
2017-07-13 16:05:45 +02:00
<div id="download">
{{ # if filename }}
<div id="download-page-one">
2017-06-06 23:23:10 +02:00
<div class="title">
2017-07-13 16:05:45 +02:00
Download {{{ filename }}} ( {{{ filesize }}} )
2017-06-06 23:23:10 +02:00
</div>
2017-07-13 16:05:45 +02:00
<div class="description">
Your friend is sending you a file with Firefox Send, a service that allows you to share files with a safe, private, and encrypted link that automatically expires to ensure your stuff does not remain online forever.
2017-06-20 21:23:12 +02:00
</div>
2017-07-13 16:05:45 +02:00
<img src="/resources/illustration_download.svg" id="download-img"/>
<div>
<button id="download-btn" title="Download">Download</button>
</div>
</div>
2017-06-08 01:16:38 +02:00
2017-07-13 16:05:45 +02:00
<div id="download-progress">
<div class="title">
Downloading {{{ filename }}} ( {{{ filesize }}} )
</div>
<div class="description">
Please leave this tab open while we fetch your file and decrypt it.
</div>
<!-- progress bar here -->
<div class="progress-bar" id="dl-progress">
<div class="percentage">
<span class="percent-number"></span>
<span class="percent-sign">%</span>
2017-06-20 21:23:12 +02:00
</div>
2017-06-06 23:23:10 +02:00
</div>
2017-07-13 16:05:45 +02:00
<div class="upload">
<div class="progress-text"> {{{ filename }}} </div>
2017-06-06 23:23:10 +02:00
</div>
2017-07-13 16:05:45 +02:00
</div>
2017-06-20 21:23:12 +02:00
2017-07-13 16:05:45 +02:00
<div class="send-new" title="Try Firefox Send">
Try Firefox Send
</div>
{{ else }}
2017-06-20 21:23:12 +02:00
2017-07-13 16:05:45 +02:00
<div class="title">
This link has expired or never existed in the first place.
</div>
2017-06-08 01:16:38 +02:00
2017-07-13 16:05:45 +02:00
<div class="share-window">
<img src="/resources/illustration_expired.svg" id="expired-img" alt="Link expired" />
</div>
<div class="expired-description">
Send files through a safe, private, and encrypted link that automatically expires to ensure your stuff does not remain online forever.
2017-06-06 23:23:10 +02:00
</div>
2017-07-13 16:05:45 +02:00
<div class="send-new" title="Try Firefox Send">
Try Firefox Send
</div>
{{ / if }}
2017-06-06 23:23:10 +02:00
</div>
2017-05-30 18:24:16 +02:00
</body>
2017-06-06 23:23:10 +02:00
</html>