feat: refine navigation and account access flow

This commit is contained in:
2026-08-14 14:16:04 +09:00
parent cee36bf12d
commit 146e78cddf
12 changed files with 239 additions and 124 deletions
+7
View File
@@ -0,0 +1,7 @@
const error = new URLSearchParams(window.location.search).get('error');
if (error === 'account-not-allowed') {
document.querySelector('#login-alert').hidden = false;
document.querySelector('#google-login').href = '/auth/google/select-account';
document.querySelector('#google-login-label').textContent = '다른 Google 계정으로 다시 시도';
}