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

85 lines
2.3 KiB
Handlebars
Raw Normal View History

<!DOCTYPE html>
<html>
2017-05-30 18:24:16 +02:00
<head>
2017-06-01 22:14:14 +02:00
<title>Firefox Fileshare</title>
2017-06-06 23:23:10 +02:00
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="./bundle.js"></script>
2017-06-01 19:54:17 +02:00
<link rel="stylesheet" href="https://code.cdn.mozilla.net/fonts/fira.css">
<link rel="stylesheet" type="text/css" href="./main.css" />
2017-05-30 18:24:16 +02:00
</head>
2017-06-05 16:25:10 +02:00
<body>
2017-06-01 19:54:17 +02:00
<div class="main-window">
<div id="page-one">
<div class="title">
Share your files quickly, privately and securely.
</div>
<div class="upload-window">
2017-06-06 23:23:10 +02:00
<div id="upload-img"><img src="/resources/upload.svg"/></div>
2017-06-01 19:54:17 +02:00
<div>
2017-06-05 16:26:50 +02:00
DRAG &amp; DROP
2017-06-01 19:54:17 +02:00
</div>
<div class="upload">
<div id="browse-text">
your file/folder here or
</div>
<div id="browse">
<form method="post" action="upload" enctype="multipart/form-data">
2017-06-06 23:23:10 +02:00
<label for="file-upload" class="file-upload">browse</label>
2017-06-01 19:54:17 +02:00
<input id="file-upload" type="file" onchange="onChange(event)" name="fileUploaded" />
</form>
</div>
</div>
</div>
</div>
<div id="file-list">
<table id="uploaded-files">
<tr>
<th width=30%>File</th>
<th width=45%>Copy URL</th>
2017-06-06 23:23:10 +02:00
<th width=18%>Expires in</th>
<th width=7%>Delete</th>
2017-06-01 19:54:17 +02:00
</tr>
2017-06-06 23:23:10 +02:00
<div data-role="popup" id="popupArrow" data-arrow="true">
2017-06-01 19:54:17 +02:00
</table>
</div>
2017-05-30 18:24:16 +02:00
2017-06-06 23:23:10 +02:00
<div id="upload-progress">
<div class="title" id="upload-filename">
Uploading
</div>
<div class="upload-window">
<div id="upload-img"><img src="/resources/upload.svg"/></div>
<div class="upload">
<!-- progress bar here -->
</div>
</div>
</div>
<div id="share-link">
<div class="title">
Copy the link below to share your file!
</div>
<div class="share-window">
<img src="/resources/share.png"/>
<div id="share-window-r">
<div id="copy">
<input id="link" type="url" value="" readonly/>
<button id="copy-btn">Copy</button>
</div>
<div>
This link expires after one download
</div>
</div>
</div>
<div class="send-new">
Send another file
</div>
</div>
2017-06-01 19:54:17 +02:00
</div>
2017-06-06 23:23:10 +02:00
2017-05-30 18:24:16 +02:00
</body>
2017-06-01 19:54:17 +02:00
</html>