thirdculture/transfer/tshweb/download.audio.html

31 lines
881 B
HTML
Raw Permalink Normal View History

2024-11-12 16:45:42 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Third Culture Upload</title>
<link rel="stylesheet" href="../styles/main.css">
</head>
<body>
<div class="wrapper">
<br />
<h2 class="page-title">{{.Filename}}</h2>
<code>
type: <b>{{.ContentType}}</b>
size: <b>{{.ContentLength | format "#,###."}}</b> bytes
</code>
<br />
<audio id="audio-player" class="preview-audio" controls preload="auto" data-setup='{}'>
<source src="{{.URL}}" type="{{.ContentType}}">
</source>
</audio>
<p class="dwn"><a href="{{.URLGet}}"> download</a></p>
<div class="qrcode">
<img src="data:image/png;base64,{{.QRCode}}" />
</div>
</div>
</body>
</html>