viddl/templates/download-result.html

14 lines
363 B
HTML
Raw Permalink Normal View History

2023-09-11 22:27:18 +02:00
<div id="get-btn">
{{ if eq .StatusCode 200 }}
<a href="{{ .DownloadURL }}" rel="noopener" download target="_blank">
Download
</a>
<small>Right click and Click "Save link as"</small>
2023-09-11 22:27:18 +02:00
{{ else }}
<button>Try Again
<!-- <a class="htmx-indicator" href="#" aria-busy="true"></a> -->
</button>
<strong>Internal Error. Try Again later</strong>
2023-09-11 22:27:18 +02:00
{{ end }}
</div>