transfersh/download.video.html

30 lines
801 B
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang=fr>
<head>
<meta charset="utf-8" />
<title>{{.Filename}} - {{.Hostname}}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/styles/default.css">
</head>
<body>
<h1><a href="{{.WebAddress}}">{{.Hostname}}</a></h1>
<h2><code>{{.Filename}}</code></h2>
<div class="header">
<span>{{.ContentType}}</span>
<span>{{.ContentLength | format "####,"}}octets</span>
<a href="{{.URLGet}}">Télécharger</a>
<a href="{{.WebAddress}}inline/{{.URLRandomToken}}/{{.Filename}}">Lien direct</a>
</div>
<p>
<video controls preload="metadata">
<source src="{{.URL}}" type="{{.ContentType}}" />
</video>
</p>
<p><img id="qr" src="data:image/png;base64,{{.QRCode}}"/></p>
</body>
</html>