web-ui: include auth-guard.js on home.html and projects.html so the IN DEV badge renders on those pages too

This commit is contained in:
Zac Gaetano 2026-05-21 14:01:52 +00:00
parent 00bf112b5a
commit 89ceef444e
2 changed files with 2 additions and 0 deletions

View file

@ -560,5 +560,6 @@
loadStats(); loadStats();
setInterval(loadStats, 15000); setInterval(loadStats, 15000);
</script> </script>
<script src="js/auth-guard.js"></script>
</body> </body>
</html> </html>

View file

@ -575,5 +575,6 @@
document.addEventListener('keydown', e => { if (e.key === 'Escape') document.querySelectorAll('.modal-overlay.open').forEach(m => m.classList.remove('open')); }); document.addEventListener('keydown', e => { if (e.key === 'Escape') document.querySelectorAll('.modal-overlay.open').forEach(m => m.classList.remove('open')); });
loadAll(); loadAll();
</script> </script>
<script src="js/auth-guard.js"></script>
</body> </body>
</html> </html>