Skip to content
Snippets Groups Projects
contactMailButton.js 447 B
Newer Older
  • Learn to ignore specific revisions
  • class contactMailButton extends HTMLElement {
        constructor() {
            super();
            this.addButton();
    
        }
    
        async addButton(){
            let sitekey = await (await fetch("/API/config.php?name=sitekey")).text();
            this.innerHTML = `E-Mail: <button id="emailButton" class="h-captcha" data-sitekey="${sitekey}" data-callback="onSubmit">laden</button><br>`;
        }
    }
    
    customElements.define("jl-contact_mail_button", contactMailButton);