umlaut fix

This commit is contained in:
2026-06-12 10:30:41 +02:00
parent f06a7ffe55
commit d29edd735e
3 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@
<div style="margin-bottom: 20px;">
<label for="rules-text" style="display: block; margin-bottom: 8px; color: var(--accent);">Rules Page Content (Markdown supported)</label>
<textarea id="rules-text" name="rules_text" style="width: 100%; min-height: 300px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 15px; border-radius: 4px; font-family: inherit; font-size: 1.1em; resize: vertical;"></textarea>
<script>document.getElementById('rules-text').value = atob('{{ rules_text_b64 }}');</script>
<script>document.getElementById('rules-text').value = new TextDecoder('utf-8').decode(Uint8Array.from(atob('{{ rules_text_b64 }}'), function(c) { return c.charCodeAt(0); }));</script>
</div>
<div style="display: flex; gap: 10px; align-items: center;">