From 748e8bc6d218b1587d1ec049522b9f582941a186 Mon Sep 17 00:00:00 2001 From: 0xcathiefish <72328723+0xcathiefish@users.noreply.github.com> Date: Sat, 14 Feb 2026 15:26:48 +0000 Subject: [PATCH] Add personal email to auth whitelist for local branch Co-Authored-By: Claude Opus 4.6 --- frontend/login.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/login.html b/frontend/login.html index 1020c6d..03a825a 100644 --- a/frontend/login.html +++ b/frontend/login.html @@ -127,7 +127,7 @@ const userData = parseJwt(credential); // Email whitelist verification - const allowedEmails = ['your-email@gmail.com']; + const allowedEmails = ['xiannvweideta@gmail.com']; if (!allowedEmails.includes(userData.email)) { document.getElementById('error-msg').textContent = 'Access denied: unauthorized email.'; document.getElementById('error-msg').style.display = 'block';