file list ui

This commit is contained in:
Daniela Arcese 2017-06-02 16:56:32 -04:00
parent cc0ece20de
commit d7e4077640
3 changed files with 143 additions and 101 deletions

View file

@ -9,31 +9,42 @@
<body background="resources/background.png">
<div class="main-window">
<div class="title">
Share your files quickly, privately and securely.
<div id="page-one">
<div class="title">
Share your files quickly, privately and securely.
</div>
<div class="upload-window">
<div id="upload-img"><img src='resources/upload.svg'/></div>
<div>
DRAG & DROP
</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">
<label for="file-upload" class="file-upload">browse.</label>
<input id="file-upload" type="file" onchange="onChange(event)" name="fileUploaded" />
</form>
</div>
</div>
</div>
</div>
<div class="upload-window">
<div id="upload-img"><img src='resources/upload.svg'/></div>
<div>
DRAG & DROP
</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">
<label for="file-upload" class="file-upload">browse.</label>
<input id="file-upload" type="file" onchange="onChange(event)" name="fileUploaded" />
</form>
</div>
</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>
</table>
</div>
</div>
<ul id="uploaded_files">
</ul>
</body>
</html>