31 lines
703 B
HTML
31 lines
703 B
HTML
{{define "history_cookies"}}<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{{template "meta_tags" "Upload History"}}
|
|
{{template "user_style" .}}
|
|
</head>
|
|
<body>
|
|
{{template "page_top" .}}
|
|
|
|
<header>
|
|
<h1>Upload History</h1>
|
|
</header>
|
|
|
|
<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>
|
|
|
|
<div id="uploaded_files"></div>
|
|
{{template "page_bottom" .}}
|
|
|
|
<script>
|
|
let apiEndpoint = '{{.APIEndpoint}}';
|
|
{{template `history.js`}}
|
|
</script>
|
|
{{template "analytics"}}
|
|
</body>
|
|
</html>{{end}}
|