index.js 448 B

1234567891011121314151617181920
  1. import registerPage from "./js/pages/register.js";
  2. const notifier = document.getElementById("notifier");
  3. registerPage.render();
  4. window.notify = (type, message)=>{
  5. notifier.className = "";
  6. notifier.classList.add(type);
  7. notifier.textContent = message;
  8. notifier.style.display = "flex";
  9. setTimeout(()=>{
  10. notifier.style.display = "none";
  11. }, 7500);
  12. }
  13. window.changePage = (page)=>{
  14. console.log("changing page");
  15. }