vivaplusdl/web/video.go.html
Sebastiaan de Schaetzen 91be8274c4
All checks were successful
Build / build (push) Successful in 3m11s
UI is largely working
2025-03-16 18:11:34 +01:00

32 lines
1.0 KiB
HTML

{{- /*gotype: vivaplusdl.VideoPlayerVM*/}}
<!DOCTYPE html>
<html lang="en">
{{template "frag-header" .}}
<body>
<h1>Viva++</h1>
<div class="back-button-container">
<a href="/" class="back-button">← Back to Home</a>
</div>
<div class="video-player-container">
<div class="video-player-box">
<h2 class="video-title">{{.Title}}</h2>
<div class="video-player">
<video controls autoplay src="/stream/{{.ID}}">
Your browser does not support the video tag.
</video>
</div>
<div class="video-player-info">
<p class="video-description">{{.Description}}</p>
<!--
<div class="video-actions">
<form method="post" action="/video/{{.ID}}/mark-watched">
<button type="submit" class="mark-watched">Mark as Watched</button>
</form>
</div>
-->
</div>
</div>
</div>
</body>
</html>