From 8da2193d9ef786974bf78ecb0f3c575f37752777 Mon Sep 17 00:00:00 2001 From: adjoly Date: Thu, 23 Oct 2025 14:15:54 +0200 Subject: [PATCH] =?UTF-8?q?=E3=80=8C=F0=9F=94=A8=E3=80=8D=20fix:=20working?= =?UTF-8?q?=20error=20handling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/front/static/ts/views/LoginPage.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/front/static/ts/views/LoginPage.ts b/src/front/static/ts/views/LoginPage.ts index a7159cb..da0deec 100644 --- a/src/front/static/ts/views/LoginPage.ts +++ b/src/front/static/ts/views/LoginPage.ts @@ -59,6 +59,7 @@ export default class extends Aview { const username = (document.getElementById("username") as HTMLInputElement).value; const password = (document.getElementById("password") as HTMLInputElement).value; const totpPin = (document.getElementById('totpPin') as HTMLInputElement).value; + const idWindow = (document.getElementById('2fa-popup-content') as HTMLInputElement); try { const data_req = await fetch("http://localhost:3001/login", { method: "POST",