-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (65 loc) · 1.84 KB
/
index.html
File metadata and controls
68 lines (65 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BR Simulator</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="app">
<header class="header">
<div>
<h1>BR-Simulator</h1>
<p>Interaktiver Terminal-Story-Simulator für Betriebsratsarbeit</p>
</div>
<div class="header-actions">
<button id="exportBtn">JSON exportieren</button>
<label class="file-input">
JSON importieren
<input type="file" id="importFile" accept="application/json" />
</label>
</div>
</header>
<main class="layout">
<section class="terminal">
<div id="output" class="output" aria-live="polite"></div>
<form id="commandForm" class="command-form">
<span class="prompt">></span>
<input
id="commandInput"
type="text"
autocomplete="off"
placeholder="Befehl eingeben (hilfe)"
/>
<button type="submit">Senden</button>
</form>
</section>
<aside class="status-panel">
<h2>Statuspanel</h2>
<div class="status-block">
<h3>Tag & Zeit</h3>
<p id="dayStatus"></p>
</div>
<div class="status-block">
<h3>Metriken</h3>
<ul id="metricsList"></ul>
</div>
<div class="status-block">
<h3>Gremium</h3>
<div id="gremiumStatus"></div>
</div>
<div class="status-block">
<h3>Fristen</h3>
<ul id="deadlinesList"></ul>
</div>
<div class="status-block">
<h3>Dokumentation</h3>
<p id="docStatus"></p>
</div>
</aside>
</main>
</div>
<script src="app.js"></script>
</body>
</html>