activate_account_notice.html 907 Bytes
Newer Older
1 2 3 4 5
<%page expression_filter="h"/>
<%!
from django.utils.translation import ugettext as _
from openedx.core.djangolib.markup import HTML, Text
%>
6
<div class="wrapper-msg urgency-high">
7 8 9 10 11 12 13 14 15 16 17 18
  <div class="msg">
    <div class="msg-content">
      <h2 class="title">${_("You're almost there!")}</h2>
      <div class="copy">
        <p class='activation-message'>${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."
19 20
          )).format(
            email_start=HTML("<strong>"),
21 22 23 24 25
            email_end=HTML("</strong>"),
            email=email,
        )}
        </p>
      </div>
26
    </div>
27 28
  </div>
</div>