2018-06-25 23:05:18 +02:00
|
|
|
{{define "history_cookies"}}<!DOCTYPE html>
|
2018-06-23 21:17:53 +02:00
|
|
|
<html>
|
2017-11-10 12:39:55 +01:00
|
|
|
<head>
|
2018-06-25 23:05:18 +02:00
|
|
|
{{template "meta_tags" "Upload History"}}
|
2018-01-07 21:42:19 +01:00
|
|
|
<script src="res/script/jquery.js"></script>
|
2017-11-10 12:39:55 +01:00
|
|
|
<script src="res/script/jquery-cookie.js"></script>
|
|
|
|
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css"/>
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
|
2018-06-25 23:05:18 +02:00
|
|
|
<script type="text/javascript">var apiEndpoint = '{{.APIEndpoint}}';</script>
|
2017-11-10 12:39:55 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id='body' class="body">
|
2018-06-21 23:41:50 +02:00
|
|
|
{{template "menu" .}}
|
2017-11-10 12:39:55 +01:00
|
|
|
<br/>
|
|
|
|
Here are all files you have previously uploaded to PixelDrain using this computer.
|
|
|
|
This data is saved locally in your web browser and gets updated every time you upload a file through your current browser.
|
|
|
|
<br/><br/>
|
2018-06-21 23:41:50 +02:00
|
|
|
|
2018-01-18 23:33:44 +01:00
|
|
|
<div id="uploadedFiles" class="files_container"></div>
|
2017-11-10 12:39:55 +01:00
|
|
|
{{template "footer"}}
|
|
|
|
</div>
|
|
|
|
<script src="/res/script/history.js"></script>
|
|
|
|
{{template "analytics"}}
|
|
|
|
</body>
|
2018-06-23 21:17:53 +02:00
|
|
|
</html>{{end}}
|