Files
nginx-stream-server/internal/ui/index.html
jbergner 1d478f8803
All checks were successful
release-tag / release-image (push) Successful in 1m55s
fix für lokale dateien
2025-09-21 17:03:52 +02:00

27 lines
1001 B
HTML

<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Streams</title>
<link rel="preload" href="/static/fonts/inter-regular.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/static/fonts/inter-semibold.woff2" as="font" type="font/woff2" crossorigin>
<link rel="stylesheet" href="/static/fonts/inter.css">
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<div class="wrap">
<div class="title">
<h1 style="margin:0">🎬 Streams</h1>
<div class="row">
<input id="filter" placeholder="Filter (z. B. stream1)">
<a href="/refresh" class="pill">Neu laden</a>
</div>
</div>
<p class="muted">RTMP Ingest: <code>rtmp://HOST/&lt;name&gt;</code> · HLS: <code>http(s)://HOST/hls/&lt;name&gt;</code></p>
<div id="list" class="grid"></div>
</div>
<script defer src="/static/js/index.js"></script>
</body>
</html>