Files
fnx_web/res/template/history.html
2018-09-18 19:59:53 +02:00

26 lines
1.0 KiB
HTML

{{define "history_cookies"}}<!DOCTYPE html>
<html>
<head>
{{template "meta_tags" "Upload History"}}
<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 "menu" .}}
<br/>
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.
<br/><br/>
<div id="uploadedFiles" class="highlight_dark border_top border_bottom"></div>
{{template "footer"}}
</div>
<script src="/res/script/history.js"></script>
{{template "analytics"}}
</body>
</html>{{end}}