24 lines
649 B
HTML
24 lines
649 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>AppRobotWebcam</title>
|
|
<link rel="stylesheet" href="app.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<span class="logo">📷 AppRobotWebcam</span>
|
|
<span class="status" id="statusText">Verbinde…</span>
|
|
<button id="snapAllBtn" class="hbtn primary" disabled>⬇ Snapshot alle</button>
|
|
<a id="configLink" class="hbtn" href="config.html" title="Kamera-Konfiguration">⚙ Config</a>
|
|
</header>
|
|
|
|
<main>
|
|
<div id="cameras"></div>
|
|
</main>
|
|
|
|
<script src="viewer.js" defer></script>
|
|
</body>
|
|
</html>
|