Fix template files to valid UTF-8 for Flask/Jinja loading

This commit is contained in:
2026-02-13 01:51:03 +01:00
parent b20eb713a1
commit f0eaf3dc5f
2 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,7 @@
const msg = document.getElementById('connectMsg'); const msg = document.getElementById('connectMsg');
if (!ssid) { if (!ssid) {
msg.textContent = 'Bitte SSID wählen.'; msg.textContent = 'Bitte SSID wählen.';
return; return;
} }

View File

@@ -9,7 +9,7 @@
<body> <body>
<main class="container"> <main class="container">
<h1>ESP32 Serial Live</h1> <h1>ESP32 Serial Live</h1>
<p><a href="/">Zurück zum WLAN-Portal</a></p> <p><a href="/">Zurück zum WLAN-Portal</a></p>
<pre id="terminal" class="terminal"></pre> <pre id="terminal" class="terminal"></pre>
</main> </main>