landing.js 482 B

1234567891011121314151617
  1. let landingPage = {
  2. mainComp: document.querySelector("#main"),
  3. loginComp: document.querySelector("#login"),
  4. posComp: document.querySelector("#pos"),
  5. //Remove all displayed components
  6. clearScreen: function(){
  7. this.mainComp.style.display = "none";
  8. this.loginComp.style.display = "none";
  9. this.posComp.style.display = "none";
  10. },
  11. choosePos: function(){
  12. this.clearScreen();
  13. this.posComp.style.display = "flex";
  14. }
  15. }