36 lines
No EOL
987 B
HTML
Executable file
36 lines
No EOL
987 B
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">
|
|
</head>
|
|
<body>
|
|
<!-- === Menü === -->
|
|
<header>
|
|
<h1>Video Konvertierung</h1>
|
|
<nav>
|
|
<button onclick="alert('Statistiken bald verfügbar')">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">
|
|
<h2>Allgemeine Statistiken</h2>
|
|
<p>Hier könnten Diagramme, Durchschnittswerte etc. angezeigt werden.</p>
|
|
</section>
|
|
<script src="/client/client.js"></script>
|
|
</body>
|
|
</html> |