fox-send/public/index.html

51 lines
1.3 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
2017-05-30 16:24:16 +00:00
<head>
2017-06-02 19:02:49 +00:00
<title>Firefox Fileshare</title>
<script src="upload.js"></script>
<link rel="stylesheet" href="https://code.cdn.mozilla.net/fonts/fira.css">
<link rel="stylesheet" type="text/css" href="main.css" />
2017-05-30 16:24:16 +00:00
</head>
2017-06-02 19:02:49 +00:00
<body background="resources/background.png">
<div class="main-window">
2017-06-02 20:56:32 +00:00
<div id="page-one">
<div class="title">
Share your files quickly, privately and securely.
2017-06-02 19:02:49 +00:00
</div>
2017-06-02 20:56:32 +00:00
<div class="upload-window">
<div id="upload-img"><img src='resources/upload.svg'/></div>
<div>
DRAG & DROP
2017-06-02 19:02:49 +00:00
</div>
2017-06-02 20:56:32 +00:00
<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">
<label for="file-upload" class="file-upload">browse.</label>
<input id="file-upload" type="file" onchange="onChange(event)" name="fileUploaded" />
</form>
</div>
2017-06-02 19:02:49 +00:00
</div>
</div>
2017-06-02 20:56:32 +00:00
</div>
<div id="file-list">
<table id="uploaded-files">
<tr>
<th width=30%>File</th>
<th width=45%>Copy URL</th>
<th width=20%>Expires in</th>
<th width=5%>Delete</th>
</tr>
2017-06-02 20:56:32 +00:00
</table>
2017-06-02 19:02:49 +00:00
</div>
2017-05-30 16:24:16 +00:00
2017-06-02 20:56:32 +00:00
</div>
2017-05-30 16:24:16 +00:00
</body>
2017-06-02 19:02:49 +00:00
</html>