disable page switch buttons from login and signup
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
e8ec83b5a2
commit
bd496ab19e
@ -1,6 +1,8 @@
|
|||||||
const privacyPolicy = document.getElementById('privacy-policy');
|
const privacyPolicy = document.getElementById('privacy-policy');
|
||||||
const headerWrapper = document.getElementById('kc-header-wrapper');
|
const headerWrapper = document.getElementById('kc-header-wrapper');
|
||||||
const header = document.getElementById('kc-header');
|
const header = document.getElementById('kc-header');
|
||||||
|
const loginBtnWrapper = document.getElementById('kc-info-wrapper')
|
||||||
|
const signupBtnWrapper = document.getElementById('kc-registration-container')
|
||||||
|
|
||||||
if (privacyPolicy) {
|
if (privacyPolicy) {
|
||||||
privacyPolicy.innerHTML = ''
|
privacyPolicy.innerHTML = ''
|
||||||
@ -15,3 +17,7 @@ if (header) {
|
|||||||
logo.id = 'main-logo';
|
logo.id = 'main-logo';
|
||||||
header.appendChild(logo);
|
header.appendChild(logo);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (loginBtnWrapper) loginBtnWrapper.remove();
|
||||||
|
|
||||||
|
if (signupBtnWrapper) signupBtnWrapper.remove();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user