-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreview.html
More file actions
57 lines (53 loc) · 2.31 KB
/
preview.html
File metadata and controls
57 lines (53 loc) · 2.31 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
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<meta
name="description"
content="db-wallet — Read-Only-Vorschau eines Import-Payloads. Rein lokal, wird nicht gespeichert."
/>
<meta name="theme-color" content="#14121c" />
<meta name="color-scheme" content="dark light" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="db-wallet" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob:; connect-src 'self'; manifest-src 'self'; worker-src 'self'; base-uri 'self'; form-action 'none';"
/>
<title>db-wallet – Vorschau (Read-Only)</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="themes.css" />
<script src="theme.js"></script>
</head>
<body data-page="preview">
<h1>Vorschau (Read-Only)</h1>
<div class="top-row">
<div>
<span id="wallet-version">v–</span> Nutzer:in:
<strong id="uid">–</strong>
<small style="color: var(--muted)">(nicht gespeichert)</small>
</div>
<button id="btn-exit" aria-label="Vorschau beenden">Beenden</button>
</div>
<div class="stat-panel">
<div class="stat">
Gesamt getrunken:<br /><strong id="total">0</strong>
</div>
<div class="stat">
Offen seit letzter Zahlung:<br /><strong id="unpaid">0</strong>
</div>
<div class="stat">
Guthaben:<br /><strong id="credit">0</strong>
</div>
</div>
<div class="wallet-actions">
<pre id="history">Lade Vorschau…</pre>
</div>
<script src="wallet-helpers.js" defer></script>
<script src="wallet-summary.js" defer></script>
<script src="import-preview.js" defer></script>
</body>
</html>