<div id="ageModal" class="age-overlay">
<div class="age-box">
<h2>Age Verification</h2>
<p>You must be 18 years or older to enter this site.</p>
<div class="actions">
<button class="btn-no" onclick="exitSite()">I am under 18</button>
<button class="btn-yes" onclick="enterSite()">I am 18+</button>
</div>
</div>
</div>
<div class="site-content">
<h1>Welcome to the Site</h1>
<p>Content visible only to verified users.</p>
<button onclick="resetAge()">Reset Verification</button>
</div>
Back to Snippets
Age Verification Modal JS
Ensure your visitors are old enough with this compliance modal. It blocks access to the page until the user confirms their age, and we use local storage to remember their choice for their next visit.
381