activation_invalid.html 1.6 KB
Newer Older
David Baumgold committed
1
<%! from django.utils.translation import ugettext as _ %>
2
<%inherit file="base.html" />
3 4

<%block name="content">
5 6
<div class="wrapper-mast wrapper sr">
  <header class="mast">
7
    <h1 class="page-header">${_("{studio_name} Account Activation").format(studio_name=settings.STUDIO_SHORT_NAME)}</h1>
8 9 10 11 12 13 14
  </header>
</div>

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

16 17
    <div class="notice notice-incontext notice-instruction has-actions">
      <div class="msg">
18
        <h1 class="title">${_("Your account activation is invalid")}</h1>
19
        <div class="copy">
louyihua committed
20
          <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>
21 22
          <p>${_("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(
              platform_name=settings.PLATFORM_NAME, studio_name=settings.STUDIO_NAME,
23 24
              link_start='<a href="/">', link_end="</a>"
            )}</p>
25 26
        </div>
      </div>
27

28
      <ul class="list-actions">
29
        % if settings.TENDER_DOMAIN:
30
        <li class="action-item">
31
          <a href="http://${settings.TENDER_DOMAIN}/discussion/new" class="action action-primary show-tender">
32 33
            ${_('Contact {platform_name} Support').format(platform_name=settings.PLATFORM_NAME)}
          </a>
34
        </li>
35
        % endif
36 37 38
      </ul>
    </div>
  </section>
39
</div>
40
</%block>