diff --git a/diagnostic/index.html b/diagnostic/index.html index d36ea11..538c519 100644 --- a/diagnostic/index.html +++ b/diagnostic/index.html @@ -533,20 +533,26 @@ (Diagnostic-Container bleibt auf ENV).
-
+
- + - + - - +
+ + +
- +
+ + +
@@ -1498,6 +1504,21 @@ send({ action: 'send_voice_config', defaultVoice, highlightVoice, ttsEnabled, speedRamona, speedThorsten, ttsEngine, xttsVoice, whisperModel }); } + // ── Passwort-Feld Anzeigen/Verbergen ───────────────────── + function toggleSecret(inputId, btn) { + const el = document.getElementById(inputId); + if (!el) return; + if (el.type === 'password') { + el.type = 'text'; + btn.innerHTML = '👀'; // 👀 + btn.title = 'Verbergen'; + } else { + el.type = 'password'; + btn.innerHTML = '👁'; // 👁 + btn.title = 'Anzeigen'; + } + } + // ── Runtime-Konfiguration ───────────────────── async function loadRuntimeConfig() { const statusEl = document.getElementById('rc-status');