Version 0.1.2 - Ajout du systême d'authentification

This commit is contained in:
Raphix
2023-11-02 11:09:47 +01:00
parent ea03e49887
commit 132dae4809
16 changed files with 620 additions and 21 deletions

View File

@ -9,13 +9,14 @@ class InfoPop {
constructor(name) {
this.name = name
this.element = getID(this.name)
this.element.innerHTML = " "
this.element.style.fontSize = "14px"
this.element.style.position = "sticky"
}
clear() {
this.element.innerHTML = ""
this.element.innerHTML = "&nbsp"
}
err(text) {