Files
Freundebuch/backend/public/book/index.html
2026-09-07 12:21:53 +02:00

33 lines
1007 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Freundesbuch Ansicht</title>
<link rel="stylesheet" href="/assets/style.css" />
<link rel="stylesheet" href="/book/book.css" />
</head>
<body>
<div class="top-bar card" style="border-radius:0;">
<h1 style="margin:0;">🎠 Freundesbuch</h1>
<div style="display:flex; gap:0.6em; flex-wrap:wrap;">
<button class="secondary" id="pdfBtn">⬇️ Als PDF exportieren</button>
<a class="btn secondary" href="/admin">← Zur Übersicht</a>
</div>
</div>
<div id="bookRoot" class="book-root">
<p class="muted" style="text-align:center; margin-top:3em;">Lädt...</p>
</div>
<div class="book-nav" id="bookNav" style="display:none;">
<button id="prevBtn" class="secondary">← Zurück</button>
<span id="pageIndicator"></span>
<button id="nextBtn" class="secondary">Weiter →</button>
</div>
<script src="/book/book.js"></script>
</body>
</html>