monofile/pages/download.html

40 lines
1.1 KiB
HTML
Raw Normal View History

2022-09-26 22:09:38 -07:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>monofile</title>
2023-02-07 20:08:33 -08:00
$metaTags
2022-12-27 11:52:11 -08:00
<meta name="og:site_name" content="monofile $Version">
2022-09-27 18:11:03 -07:00
<meta name="title" content="$FileName">
2022-09-28 06:39:11 -07:00
<meta name="description" content="ID: $FileId">
2022-09-26 22:09:38 -07:00
2023-01-30 14:23:47 -08:00
<link
rel="stylesheet"
href="/static/style/downloads.css"
>
2022-09-26 22:09:38 -07:00
</head>
<body>
2023-01-30 21:32:01 -08:00
<div id="appContent">
<div id="uploadWindow">
<h1>
$FileName
</h1>
<p style="color:#999999">
file id <span class="number">$FileId</span>
</p>
2023-01-30 14:23:47 -08:00
2023-01-30 21:32:01 -08:00
<button style="position:relative;width:100%;top:10px;">
<a id="dlbtn" href="/file/$FileId" download="$FileName" style="position:absolute;left:0px;top:0px;height:100%;width:100%;"></a>
download
</button>
<div style="min-height:20px" />
</div>
2022-09-26 22:09:38 -07:00
</div>
</body>
</html>