class newComment extends HTMLElement { constructor() { super(); this.setupForm(); } async setupForm(){ let sitekey = await (await fetch("/API/config.php?name=sitekey")).text(); this.innerHTML = `
`; } } customElements.define("jl-new_comment", newComment);