Skip to content
Snippets Groups Projects
Commit c3aa5149 authored by Zubir Afzal's avatar Zubir Afzal
Browse files

ENT-1438 Update wording in account recovery flow

parent ad037abf
No related branches found
No related tags found
No related merge requests found
......@@ -77,6 +77,7 @@ def send_account_recovery_email_for_user(user, request, email=None):
message_context = get_base_template_context(site)
message_context.update({
'request': request, # Used by google_analytics_tracking_pixel
'email': email,
'platform_name': configuration_helpers.get_value('PLATFORM_NAME', settings.PLATFORM_NAME),
'reset_link': '{protocol}://{site}{link}?is_account_recovery=true'.format(
protocol='https' if request.is_secure() else 'http',
......
......@@ -15,11 +15,21 @@
</p>
<p style="color: rgba(0,0,0,.75);">
{% trans "If you didn't request this change, you can disregard this email - we have not yet created your password." %}
{% trans "We've restored access to your edX account using the recovery email you provided at registration." %}
<br />
</p>
{% trans "Create my Password" as course_cta_text %}
<p style="color: rgba(0,0,0,.75);">
{% blocktrans %}Once you've created a password [below], you will be able to log in to edX with this email ({{ email }}) and your new password.{% endblocktrans %}
<br />
</p>
<p style="color: rgba(0,0,0,.75);">
{% trans "If you didn't request this change, you can disregard this email - we have not yet reset your password." %}
<br />
</p>
{% trans "Create Password" as course_cta_text %}
{% include "ace_common/edx_ace/common/return_to_course_cta.html" with course_cta_text=course_cta_text course_cta_url=reset_link %}
</td>
......
{% load i18n %}{% autoescape off %}
{% blocktrans %}You're receiving this e-mail because you requested to create a password for your user account at {{ platform_name }}.{% endblocktrans %}
{% trans "Please go to the following page and choose a new password:" %}
{% trans "We've restored access to your edX account using the recovery email you provided at registration." %}
{{ reset_link }}
{% blocktrans %}Once you've created a password [below], you will be able to log in to edX with this email ({{ email }}) and your new password.{% endblocktrans %}
{% trans "If you didn't request this change, you can disregard this email - we have not yet reset your password." %}
{% trans "If you didn't request this change, you can disregard this email - we have not yet created your password." %}
{{ reset_link }}
{% trans "Thanks for using our site!" %}
{% blocktrans %}The {{ platform_name }} Team{% endblocktrans %}
......
{% load i18n %}
{% autoescape off %}
{% blocktrans trimmed %}Create password on {{ platform_name }}{% endblocktrans %}
{% blocktrans trimmed %}Password creation on {{ platform_name }}{% endblocktrans %}
{% endautoescape %}
......@@ -86,7 +86,7 @@
secondaryEmailFieldData = {
model: userAccountModel,
title: gettext('Secondary Email Address'),
title: gettext('Recovery Address'),
valueAttribute: 'secondary_email',
helpMessage: gettext('You may access your account when single-sign on is not available.'),
persistChanges: true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment