diff --git a/lms/static/js/student_account/views/LoginView.js b/lms/static/js/student_account/views/LoginView.js index 62895d3d0b..b12d079b51 100644 --- a/lms/static/js/student_account/views/LoginView.js +++ b/lms/static/js/student_account/views/LoginView.js @@ -92,7 +92,7 @@ this.resetMessage = this.$resetSuccess.find('.message-copy'); successMessage = HtmlUtils.interpolateHtml( - gettext('{paragraphStart}You entered {boldStart}{email}{boldEnd}. If this email address is associated with an edX account, we will send a message with password reset instructions to this email address.{paragraphEnd}' + // eslint-disable-line max-len + gettext('{paragraphStart}You entered {boldStart}{email}{boldEnd}. If this email address is associated with your {platform_name} account, we will send a message with password reset instructions to this email address.{paragraphEnd}' + // eslint-disable-line max-len '{paragraphStart}If you do not receive a password reset message, verify that you entered the correct email address, or check your spam folder.{paragraphEnd}' + // eslint-disable-line max-len '{paragraphStart}If you need further assistance, {anchorStart}contact technical support{anchorEnd}.{paragraphEnd}'), { // eslint-disable-line max-len boldStart: HtmlUtils.HTML(''), @@ -100,6 +100,7 @@ paragraphStart: HtmlUtils.HTML('
'), paragraphEnd: HtmlUtils.HTML('
'), email: email, + platform_name: this.platformName, anchorStart: HtmlUtils.HTML(''), anchorEnd: HtmlUtils.HTML('') });