Edit Content

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

1 thought on “Hello world!”

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top
// When the page loads, check if the user has visited the "Complete Task" page window.addEventListener('DOMContentLoaded', function() { if (localStorage.getItem('visitedCompleteTask') === 'true') { document.getElementById('task-complete').checked = true; } }); // If the user visits the "Complete Task" page, set the localStorage flag if (window.location.pathname === '/complete-task/') { localStorage.setItem('visitedCompleteTask', 'true'); }