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:
parent
00bf112b5a
commit
89ceef444e
2 changed files with 2 additions and 0 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue