Files
kabano/public/views/js/d.captcha.js
copilot-swe-agent[bot] 7f0143604c Add comments to PHP and JS files
Co-authored-by: LeOSW42 <673670+LeOSW42@users.noreply.github.com>
2026-01-24 15:11:48 +00:00

24 lines
549 B
JavaScript
Executable File

// 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) {
$("#captchahidden").val(time);
$("#captchasec").html(time+" s");
time--;
}
else {
time--;
$("#captchahidden").val(time);
$("#captchatext").remove();
$("#captchasubmit").removeAttr('disabled');
$("#captchasubmit").css("display", "block");
time--;
$("#captchahidden").val(time);
clearInterval(interval);
}
}, 1000);
});