39 lines
No EOL
1.1 KiB
HTML
Executable file
39 lines
No EOL
1.1 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Websocket Client</title>
|
|
<link rel="stylesheet" href="/client/index_style.css">
|
|
<link rel="icon" href="/client/icons/favicon.ico" type="image/x-icon">
|
|
</head>
|
|
<body>
|
|
<!-- === Menü === -->
|
|
<header>
|
|
<h1>Video Konvertierung</h1>
|
|
<nav>
|
|
<button onclick="toggleStatHidden()">Statistiken</button>
|
|
</nav>
|
|
</header>
|
|
|
|
<!-- === Aktive Konvertierungen === -->
|
|
<section id="active-conversions">
|
|
<h2>Aktive Konvertierungen</h2>
|
|
<!-- Wird dynamisch mit JS gefüllt -->
|
|
</section>
|
|
|
|
<!-- === Warteschleife === -->
|
|
<section id="queue">
|
|
<h2>Warteschleife</h2>
|
|
<!-- Wird dynamisch mit JS gefüllt -->
|
|
</section>
|
|
|
|
<!-- === Statistikbereich === -->
|
|
<section id="stat" hidden=True>
|
|
<h2>Allgemeine Statistiken</h2>
|
|
<p>Hier könnten Diagramme, Durchschnittswerte etc. angezeigt werden.</p>
|
|
</section>
|
|
|
|
<script src="/client/media_conversion.js"></script>
|
|
<script src="/client/media_stat.js"></script>
|
|
</body>
|
|
</html> |