<h1>Stop for 5 seconds...</h1>
<p id="the-text"></p>
#the-text {
background-color: red;
color: white;
}
import Hamid from "https://esm.sh/hamid.js";
const logMeOut = () => {
document.getElementById('the-text').innerText= "You shall be logged out my friend";
// do some backend call to logout the user on the server-side
};
new Hamid(logMeOut, 5);
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.