Skip to content

Commit a9bbadd

Browse files
Enhance timer message with spam folder reminder
Updated timer message to include a note about checking spam folder.
1 parent d904006 commit a9bbadd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

webapps/gofile.io/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -656,12 +656,12 @@ <h3><i class="fas fa-check-circle"></i> Login Succeeded</h3>
656656
btn.disabled = true;
657657

658658
let remaining = seconds;
659-
timerText.textContent = `Please wait ${remaining} seconds before sending another link`;
659+
timerText.textContent = `Please wait ${remaining} seconds before sending another link. If not found, check your mail's spam folder`;
660660

661661
currentTimer = setInterval(() => {
662662
remaining--;
663663
if (remaining > 0) {
664-
timerText.textContent = `Please wait ${remaining} seconds before sending another link`;
664+
timerText.textContent = `Please wait ${remaining} seconds before sending another link. If not found, check your mail's spam folder`;
665665
} else {
666666
clearInterval(currentTimer);
667667
btn.disabled = false;

0 commit comments

Comments
 (0)