- <%include file="${static.get_template_path('registration/account_activation_sidebar_notice.html')}" />
+ ${sidebar_account_activation_message | n, decode.utf8}
%endif
diff --git a/lms/templates/registration/account_activation_sidebar_notice.html b/lms/templates/registration/account_activation_sidebar_notice.html
index be474707d2..5fc1a8ca75 100644
--- a/lms/templates/registration/account_activation_sidebar_notice.html
+++ b/lms/templates/registration/account_activation_sidebar_notice.html
@@ -15,7 +15,20 @@ from openedx.core.djangolib.markup import HTML, Text
Notice
${_("Activate your account!")}
-
${ activate_account_message | n, decode.utf8 }
+
${Text(_(
+ "Check your {email_start}{email}{email_end} inbox for an account activation link from {platform_name}. "
+ "If you need help, contact {link_start}{platform_name} Support{link_end}."
+ )).format(
+ platform_name=platform_name,
+ email_start=HTML(""),
+ email_end=HTML(""),
+ email=email,
+ link_start=HTML("").format(
+ activation_email_support_link=activation_email_support_link,
+ ),
+ link_end=HTML(""),
+ )}
+
## TODO: Add resend activation email functionality.
## TODO: Implementation of this is part of ENT-353.
##
diff --git a/lms/templates/registration/activate_account_notice.html b/lms/templates/registration/activate_account_notice.html
new file mode 100644
index 0000000000..80b809943e
--- /dev/null
+++ b/lms/templates/registration/activate_account_notice.html
@@ -0,0 +1,28 @@
+<%page expression_filter="h"/>
+<%!
+from django.utils.translation import ugettext as _
+from openedx.core.djangolib.markup import HTML, Text
+%>
+
+
+
+
${_("You're almost there!")}
+
+
${Text(_(
+ "There's just one more step: Before you "
+ "enroll in a course, you need to activate "
+ "your account. We've sent an email message to "
+ "{email_start}{email}{email_end} with "
+ "instructions for activating your account. If "
+ "you don't receive this message, check your "
+ "spam folder."
+ )).format(
+ email_start=HTML(""),
+ email_end=HTML(""),
+ email=email,
+ )}
+