From 40b46d04c148b4b5e38a2b3f22d7d5cd52674c13 Mon Sep 17 00:00:00 2001 From: Bill DeRusha Date: Mon, 4 Jun 2018 13:29:29 -0400 Subject: [PATCH] Update copy for password compliance message to be more clear. --- openedx/core/djangoapps/password_policy/compliance.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/openedx/core/djangoapps/password_policy/compliance.py b/openedx/core/djangoapps/password_policy/compliance.py index 1be5495945..55cf6caa0f 100644 --- a/openedx/core/djangoapps/password_policy/compliance.py +++ b/openedx/core/djangoapps/password_policy/compliance.py @@ -72,8 +72,8 @@ def enforce_compliance_on_login(user, password): raise NonCompliantPasswordException( _capitalize_first(_( '{platform_name} now requires more complex passwords. Your current password does not meet the new ' - 'requirements. Change your password now to continue using the site. Thank you for helping us keep ' - 'your data safe.' + 'requirements. Change your password now using the "Forgot password?" link below to continue using the ' + 'site. Thank you for helping us keep your data safe.' ).format( platform_name=settings.PLATFORM_NAME )) @@ -83,7 +83,8 @@ def enforce_compliance_on_login(user, password): _capitalize_first(_( '{platform_name} now requires more complex passwords. Your current password does not meet the new ' 'requirements. You must change your password by {deadline} to be able to continue using the site. ' - 'Thank you for helping us keep your data safe.' + 'To change your password, select the dropdown menu icon next to your username, then select "Account". ' + 'You can reset your password from this page. Thank you for helping us keep your data safe.' ).format( platform_name=settings.PLATFORM_NAME, deadline=strftime_localized(deadline, DEFAULT_SHORT_DATE_FORMAT)