30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
{{define "history_cookies"}}<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{template "meta_tags" "Upload History"}}
|
|
{{template "user_style" .}}
|
|
<script src="res/script/jquery.js"></script>
|
|
<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>
|
|
<script type="text/javascript">var apiEndpoint = '{{.APIEndpoint}}';</script>
|
|
</head>
|
|
<body>
|
|
<div id='body' class="body">
|
|
{{template "page_top" .}}
|
|
<h1>Upload History</h1>
|
|
<div class="page_content"><div class="limit_width">
|
|
<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>
|
|
<br/>
|
|
|
|
<div id="uploadedFiles" class="highlight_dark"></div>
|
|
</div></div>
|
|
{{template "page_bottom" .}}
|
|
<script src="/res/script/history.js"></script>
|
|
{{template "analytics"}}
|
|
</body>
|
|
</html>{{end}}
|