54 lines
2.5 KiB
HTML
54 lines
2.5 KiB
HTML
{{define "history-cookies"}}
|
|
<!DOCTYPE html>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<title>Upload History ~ PixelDrain</title>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<link rel="stylesheet" href="/res/style/layout.css"/>
|
|
<link rel="stylesheet" href="/res/style/season.css"/>
|
|
<link rel="stylesheet" href="/res/style/history.css"/>
|
|
<link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'/>
|
|
<link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css"/>
|
|
<link rel="shortcut icon" href="/res/img/tray32.png"/>
|
|
<meta name="theme-color" content="#9FCF6C"/>
|
|
<link rel="icon" sizes="180x180" href="/res/img/pixeldrain.png"/>
|
|
<link rel="icon" sizes="256x256" href="/res/img/pixeldrain_big.png"/>
|
|
|
|
{{template "bgpattern"}}
|
|
|
|
<script src="res/script/jquery-2.1.4.min.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>var APIURL = "{{apiUrl}}";</script>
|
|
|
|
<meta name="description" content="PixelDrain is a free file sharing service, you
|
|
can upload any file and you will be given a shareable link right away.
|
|
PixelDrain also supports previews for images, videos, audio, PDFs and much more.
|
|
Uncensored, unmonitored and unmoderated."/>
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:title" content="File Upload History ~ PixelDrain" />
|
|
<meta property="og:site_name" content="PixelDrain" />
|
|
<meta property="og:description" content="Instant file and screenshot sharing." />
|
|
<meta property="og:url" content="http://pixeldra.in/" />
|
|
<meta property="og:image" content="/res/img/pixeldrain_big.png" />
|
|
<meta property="og:image:type" content="image/png" />
|
|
</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="uploadedFiles"></div>
|
|
{{template "footer"}}
|
|
</div>
|
|
<script src="/res/script/history.js"></script>
|
|
{{template "analytics"}}
|
|
</body>
|
|
</html>
|
|
{{end}} |