Files
fnx_web/res/template/history.html

31 lines
703 B
HTML
Raw Normal View History

{{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>
{{template "meta_tags" "Upload History"}}
{{template "user_style" .}}
2017-11-10 12:39:55 +01:00
</head>
<body>
2022-01-11 13:28:22 +01:00
{{template "page_top" .}}
2022-01-03 14:02:50 +01:00
2022-01-11 13:28:22 +01:00
<header>
<h1>Upload History</h1>
</header>
2022-01-03 14:02:50 +01:00
2022-01-11 13:28:22 +01:00
<section>
<p>
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.
</p>
</section>
2022-01-17 17:40:03 +01:00
<div id="uploaded_files"></div>
2022-01-11 13:28:22 +01:00
{{template "page_bottom" .}}
2018-06-21 23:41:50 +02:00
2020-01-20 12:43:43 +01:00
<script>
let apiEndpoint = '{{.APIEndpoint}}';
{{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}}