Password Reset: Add a back button to the email sent screen. (#7708)

* Password Reset: Add a back button to the email sent screen.

* Fixed typo
This commit is contained in:
Alex
2026-01-21 12:26:21 -07:00
committed by GitHub
parent 9f9345ea9e
commit 3a570e335b
2 changed files with 4 additions and 3 deletions

View File

@@ -3427,7 +3427,7 @@ $text['label-email_sent']['zh-cn'] = "电子邮件已发送";
$text['label-email_sent']['ja-jp'] = "メールが送信されました";
$text['label-email_sent']['ko-kr'] = "이메일이 전송되었습니다";
$text['description-email_sent']['en-us'] = "An email has been sent to with instructions to reset your password.<br />Please check your email.";
$text['description-email_sent']['en-us'] = "An email has been sent to you with instructions to reset your password.<br />Please check your email.";
$text['description-email_sent']['en-gb'] = "An email has been sent to you with instructions to reset your password.<br />Please check your email.";
$text['description-email_sent']['ar-eg'] = "تم إرسال بريد إلكتروني إليك تحتوي على تعليمات لإعادة تعيين كلمة المرور الخاصة بك.<br />رجاءً قم بمراجعة بريدك الإلكتروني.";
$text['description-email_sent']['de-at'] = "Eine E-Mail mit Anweisungen zum Zurücksetzen Ihres Passworts wurde an Sie gesendet.<br />Bitte überprüfen Sie Ihre E-Mails.";
@@ -3534,5 +3534,3 @@ $text['label-password_reset']['tr-tr'] = "Şifre Sıfırlama";
$text['label-password_reset']['zh-cn'] = "重置密码";
$text['label-password_reset']['ja-jp'] = "パスワードのリセット";
$text['label-password_reset']['ko-kr'] = "비밀번호 재설정";
?>

View File

@@ -296,6 +296,9 @@
echo "<div class='card' style='text-align: center;'>\n";
echo " <h5>".$text['label-email_sent']."</h5>\n";
echo " ".$text['description-email_sent']."<br />\n";
echo " <form name='request' method='post'>\n";
echo " <input type='submit' id='btn_back' class='btn' style='width: 100px; margin-top: 15px;' value='".$text['button-back']."'>\n";
echo " </form>";
echo "</div>\n";
}