class NsfwWarning extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

ADULT CONTENT WARNING

This website contains adult content and is intended for mature audiences only. By entering, you confirm that you are at least 18 years of age or the legal age in your jurisdiction to view such material.

I want to leave
`; this.shadowRoot.getElementById('enter-btn').addEventListener('click', () => { this.remove(); document.cookie = "nsfw_warning_accepted=true; path=/; max-age=86400"; // 1 day }); } } customElements.define('nsfw-warning', NsfwWarning);