Files
project-kino/runtime-current/kino/app-src/browser-extension/kino-capture/popup.html

28 lines
869 B
HTML

<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Kino Capture</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<main>
<h1>Kino Capture</h1>
<p id="status">Lade Kandidaten…</p>
<label>
Kino-App URL
<input id="app-url" type="url" placeholder="http://192.168.178.213:8099/" />
</label>
<div class="actions">
<button id="refresh" type="button">Neu scannen</button>
<button id="send" type="button">An Kino-App senden</button>
<button id="clear" type="button" class="secondary">Leeren</button>
</div>
<ol id="candidates"></ol>
<p class="hint">Tipp: Video starten und einige Sekunden laufen lassen, dann dieses Popup öffnen.</p>
</main>
<script src="popup.js"></script>
</body>
</html>