invalid_email_key.html 739 Bytes
Newer Older
1 2
<%! from django.utils.translation import ugettext as _ %>

3
<%inherit file="main.html" />
4

5 6 7
<section class="container activation">

  <section class="message">
8
    <h1 class="invalid">${_("Invalid email change key")}</h1>
9
    <hr class="horizontal-divider">
10
    <p> ${_("This e-mail key is not valid. Please check:")}</p>
11
    <ul>
12 13 14
      <li>${_("Was this key already used? Check whether the e-mail change has already happened.")}
      <li>${_("Did your e-mail client break the URL into two lines?")}
      <li>${_("The keys are valid for a limited amount of time. Has the key expired?")}
15
    </ul>
16
    <p>${_('Go back to the {link_start}home page{link_end}.').format(link_start='<a href="/">', link_end='</a>')}</p>
17 18
  </section>
</section>