-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (93 loc) · 4.73 KB
/
index.html
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="de-DE">
<head>
<title>Meldekarten-Generator</title>
<meta name="google-site-verification" content="Pu5ZefDCTk9OZpoLTeChyXTFRi-bNh05RsBwTWuX_L8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Erstelle, speichere und bearbeite Meldekarten für Einsätze.">
<meta name="keywords"
content="meldekarte, registration card, drk, icrc, ikrk, red cross, rotes kreuz, einsatzkräfte, kab">
<meta charset="UTF-8">
<meta name="theme-color" content="#fff" />
<link rel="icon" href="./red-cross.svg" type="image/x-icon">
<link rel="manifest" href="./manifest.json" />
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="header" class="not-printable">
<h1>Meldekarten-Generator</h1>
<p>Erstelle, speichere und bearbeite Meldekarten für Einsätze</p>
<div class="button-set" id="header-buttons">
<button onclick="document.getElementById('import-overlay').style.display = 'inline'">Daten
hochladen</button>
<button onclick="doExportString()">Daten herunterladen</button>
<button onclick="document.getElementById('delete-all-overlay').style.display = 'inline'">Alle Daten
löschen</button>
</div>
</div>
<div id="entry-list"></div>
<br>
<!--Overlays-->
<div class="overlay" id="import-overlay" class="not-printable">
<div class="content">
<div class="multi-element-string">
<span style="white-space: nowrap;">Öffne eine</span>
<label style="font-size: 0.75em; color: grey;" for="file-upload" class="file-upload">Datei</label>
<input style="display: none;" id="file-upload" type="file" />
oder
<textarea id="string-input" placeholder="füge hier die Zeichenkette ein."></textarea>
</div>
<div style="margin-top: 10px; display: flex; justify-content: space-around;">
<button onclick="this.parentNode.parentNode.parentNode.style.display = 'none'">Abbrechen</button>
<button class="primary-button" id="add-string">Hinzufügen</button>
</div>
</div>
</div>
<div class="overlay" id="export-overlay" class="not-printable">
<div class="content">
<div class="multi-element-string">
<span style="white-space: nowrap;">Lade die</span>
<button onclick="download()" class="input-style">Datei</button>
<span style="white-space: nowrap;">herunter oder</span>
<button onclick="copy()" class="input-style">kopiere</button>
<span style="white-space: nowrap;">die Zeichenkette.</span>
</div>
</div>
</div>
<div class="overlay" class="not-printable" id="delete-all-overlay">
<div class="content">
<h3 style="margin-top: 5px; margin-bottom:5px;">Alle Daten löschen?</h3>
Möchtest du wirklich alle Einträge unwiderruflich löschen?
<div style="margin-top: 10px; display: flex; justify-content: space-around;">
<button onclick="this.parentNode.parentNode.parentNode.style.display = 'none'">Abbrechen</button>
<button onclick="deleteAllData()" class="warning-button">Löschen</button>
</div>
</div>
</div>
<div class="overlay" class="not-printable" id="delete-entry-overlay">
<div class="content">
<h3 style="margin-top: 5px; margin-bottom:5px;">Eintrag löschen?</h3>
Möchtest du wirklich diesen Eintrag unwiderruflich löschen?
<div style="margin-top: 10px; display: flex; justify-content: space-around;">
<button onclick="this.parentNode.parentNode.parentNode.style.display = 'none'">Abbrechen</button>
<button onclick="" id="delete-entry-button" class="warning-button">Löschen</button>
</div>
</div>
</div>
<noscript>
<div style="display: inline;" class="overlay" class="not-printable" id="delete-entry-overlay">
<div class="content">
<h3 style="margin-top: 5px; margin-bottom:5px;">JavaScript wird benötigt</h3>
JavaScript wird leider benötigt, um diese Website zu nutzen. Aktiviere JavaScript in den Einstellungen,
update den Browser und nutze am besten den Firefox-Browser.
</div>
</div>
</noscript>
<div id="footer" class="button-set not-printable">
<button onclick="addEntry()">Neue Person hinzufügen</button>
<button onclick="printCard()">Drucken</button>
</div>
<div id="print-area"></div>
<script src="./app.js"></script>
</body>
</html>