Add comments to PHP and JS files

Co-authored-by: LeOSW42 <673670+LeOSW42@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-24 15:11:48 +00:00
parent bb8e2d9746
commit 7f0143604c
25 changed files with 177 additions and 8 deletions

View File

@@ -1,5 +1,7 @@
// Compte à rebours du captcha.
var time = 9;
// Active le bouton lorsque le délai est écoulé.
$(window).ready(function() {
var interval = setInterval(function() {
if (time > 0) {
@@ -19,4 +21,3 @@ $(window).ready(function() {
}
}, 1000);
});