feat: refine navigation and account access flow
This commit is contained in:
@@ -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 계정으로 다시 시도';
|
||||
}
|
||||
Reference in New Issue
Block a user