2018-06-25 23:05:18 +02:00
|
|
|
{{define "history_cookies"}}<!DOCTYPE html>
|
2020-01-17 20:32:21 +01:00
|
|
|
<html lang="en">
|
2017-11-10 12:39:55 +01:00
|
|
|
<head>
|
2018-06-25 23:05:18 +02:00
|
|
|
{{template "meta_tags" "Upload History"}}
|
2019-02-18 13:37:41 +01:00
|
|
|
{{template "user_style" .}}
|
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>
|
2020-01-17 20:32:21 +01:00
|
|
|
<script>var apiEndpoint = '{{.APIEndpoint}}';</script>
|
2017-11-10 12:39:55 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id='body' class="body">
|
2019-09-17 23:38:40 +02:00
|
|
|
{{template "page_top" .}}
|
|
|
|
<h1>Upload History</h1>
|
|
|
|
<div class="page_content"><div class="limit_width">
|
|
|
|
<p>
|
2020-01-17 20:32:21 +01:00
|
|
|
Here are all files you have previously uploaded to pixeldrain using this computer.
|
2019-09-17 23:38:40 +02:00
|
|
|
This data is saved locally in your web browser and gets updated every time you upload a file through your current browser.
|
|
|
|
</p>
|
|
|
|
<br/>
|
2018-06-21 23:41:50 +02:00
|
|
|
|
2019-09-17 23:38:40 +02:00
|
|
|
<div id="uploadedFiles" class="highlight_dark"></div>
|
|
|
|
</div></div>
|
|
|
|
{{template "page_bottom" .}}
|
2019-12-23 23:56:57 +01:00
|
|
|
<script>{{template `history.js`}}</script>
|
2017-11-10 12:39:55 +01:00
|
|
|
{{template "analytics"}}
|
|
|
|
</body>
|
2018-06-23 21:17:53 +02:00
|
|
|
</html>{{end}}
|