transfersh/download.video.html

25 lines
660 B
HTML
Raw 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>
<p>{{.ContentType}}</p>
<p>{{.ContentLength | format "####,"}} octets</p>
<h3><a href="{{.UrlGet}}">Télécharger</a></h3>
<p><img src="data:image/png;base64,{{.QRCode}}"/></p>
<video controls preload="metadata">
<source src="{{.Url}}" type="{{.ContentType}}" />
</video>
</body>
</html>