activation_invalid.html 1.44 KB
Newer Older
1 2 3 4 5
<%!
from openedx.core.djangolib.markup import HTML, Text
from django.utils.translation import ugettext as _
%>
<%page expression_filter="h"/>
6
<%inherit file="base.html" />
7 8

<%block name="content">
9 10
<div class="wrapper-mast wrapper sr">
  <header class="mast">
11
    <h1 class="page-header">
12
      ${Text(_("{studio_name} Account Activation")).format(
13 14 15
        studio_name=Text(settings.STUDIO_SHORT_NAME)
      )}
    </h1>
16 17 18 19 20 21 22
  </header>
</div>

<div class="wrapper-content wrapper">
  <section class="content activation is-invalid">
    <article class="content-primary" role="main">
    </article>
23

24 25
    <div class="notice notice-incontext notice-instruction has-actions">
      <div class="msg">
26
        <h1 class="title">${_("Your account activation is invalid")}</h1>
27
        <div class="copy">
louyihua committed
28
          <p>${_("We're sorry. Something went wrong with your activation. Check to make sure the URL you went to was correct, as e-mail programs will sometimes split it into two lines.")}</p>
29
          <p>
30
            ${Text(_("If you still have issues, contact {platform_name} Support. In the meantime, you can also return to {link_start}the {studio_name} homepage.{link_end}")).format(
31 32 33 34 35 36
              platform_name=Text(settings.PLATFORM_NAME),
              studio_name=Text(settings.STUDIO_NAME),
              link_start=HTML('<a href="/">'),
              link_end=HTML('</a>')
            )}
          </p>
37 38 39 40
        </div>
      </div>
    </div>
  </section>
41
</div>
42
</%block>