2021-10-13 09:23:40 +02:00
|
|
|
import { show, hide } from '@utils';
|
|
|
|
|
|
|
|
export function showFusion() {
|
|
|
|
show(document.querySelector('.fusion'));
|
2021-10-13 09:26:54 +02:00
|
|
|
hide(document.querySelector('.new-account'));
|
2022-09-29 16:47:55 +02:00
|
|
|
hide(document.querySelector('#new-account-password-confirmation'));
|
2021-10-13 09:26:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export function showNewAccount() {
|
|
|
|
hide(document.querySelector('.fusion'));
|
|
|
|
show(document.querySelector('.new-account'));
|
2022-09-29 16:47:55 +02:00
|
|
|
hide(document.querySelector('#new-account-password-confirmation'));
|
2021-10-13 01:08:57 +02:00
|
|
|
}
|