Completed installation procedure on wizard

This commit is contained in:
Pax1601
2023-12-22 18:44:31 +01:00
parent 92b1a46e8a
commit 15e8c9e791
26 changed files with 1541 additions and 150 deletions

View File

@@ -1,15 +1,24 @@
class ManagerPage {
element;
options;
constructor(options) {
this.options = options ?? {};
this.element = document.createElement('div');
this.element.classList.add("manager-page");
this.element.classList.add("manager-page", "hide");
}
getElement() {
return this.element;
}
show() {
this.element.classList.remove("hide");
}
hide() {
this.element.classList.add("hide");
}
}
module.exports = ManagerPage;