📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
qrmenuv2.demodesign.com.tr
/
sayfayedek
/
js
📝
otp-timer.js
← Geri Dön
"use strict"; let resendOTP = document.getElementById("resendOTP"); if(resendOTP) { let optcount = 90; let optcounter = setInterval(otptimer, 1000); function otptimer() { optcount = optcount - 1; if (optcount <= 0) { clearInterval(optcounter); resendOTP.innerHTML = '<a class="resendOTP" href="">Resend OTP</a>'; } else { resendOTP.innerHTML = 'Wait ' + optcount + ' secs'; } if (optcount <= 10) { resendOTP.style.color = "red"; } } }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula