monofile/pages/download.html

40 lines
1.1 KiB
HTML
Raw Normal View History

2023-02-26 10:47:03 -08: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>
$metaTags
<meta name="og:site_name" content="monofile $Version">
<meta name="title" content="$FileName">
<meta name="description" content="ID: $FileId">
<link
rel="stylesheet"
href="/static/style/downloads.css"
>
</head>
<body>
<div id="appContent">
<div id="uploadWindow">
<h1>
$FileName
</h1>
<p style="color:#999999">
file id <span class="number">$FileId</span>
</p>
<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>
</div>
</body>
2022-09-26 22:09:38 -07:00
</html>