viddl/templates/download-result.html
HeshamTB 13269a7b84 feat: better url validation:
- Do not accept redirects. Usually
	on yt at least, redirect means the link
	is invalid. Hence, it redirects to the home
	page.

	- This is tested and it works well. trust.

Signed-off-by: HeshamTB <hishaminv@gmail.com>
2023-09-13 13:43:44 +03:00

14 lines
363 B
HTML

<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>
{{ else }}
<button>Try Again
<!-- <a class="htmx-indicator" href="#" aria-busy="true"></a> -->
</button>
<strong>Internal Error. Try Again later</strong>
{{ end }}
</div>