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" .}}
|
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
|
|
|
|
2020-01-20 12:43:43 +01:00
|
|
|
<div id="uploaded_files" class="highlight_dark"></div>
|
2019-09-17 23:38:40 +02:00
|
|
|
</div></div>
|
|
|
|
{{template "page_bottom" .}}
|
2020-12-22 20:53:33 +01:00
|
|
|
</div>
|
2020-01-20 12:43:43 +01:00
|
|
|
<script>
|
|
|
|
let apiEndpoint = '{{.APIEndpoint}}';
|
|
|
|
{{template `util.js`}}
|
|
|
|
{{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}}
|