codebeater - Beta Launch #10

Merged
5803025047 merged 103 commits from dev into main 2025-12-15 11:20:48 -05:00
2 changed files with 8 additions and 0 deletions
Showing only changes of commit 76699f6be3 - Show all commits

Binary file not shown.

View File

@ -14,6 +14,7 @@ session_start();
</head>
<body>
<audio id="bgm" src="/assets/music/onboard.mp3"></audio>
<div class="container-onboard">
<?php include 'notif.php'; ?>
<?php
@ -34,6 +35,13 @@ session_start();
<script>
AOS.init();
</script>
<script>
document.addEventListener("DOMContentLoaded", () => {
const bgm = document.getElementById("bgm");
bgm.play()
});
</script>
</body>
</html>