email_exists.html 470 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">${_("E-mail change failed")}</h1>
9 10
    <hr class="horizontal-divider">

11
    <p>${_("An account with the new e-mail address already exists.")}</p>
12

13
    <p>${_("Go back to the {link_start}home page{link_end}.").format(link_start='<a href="/">', link_end='</a>')}</p>
14 15
  </section>
</section>