summaryrefslogtreecommitdiff
path: root/dashboard/templates/registration/activate.html
blob: e6ffdc9e0fe29906f3531d9e40ce076b798c1210 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "base.html" %}
{% block region %}{% endblock %}

{% block title %}Account Activation{% endblock %}

{% block content %}
{% if account %}
  <div id="page_head">
    <h2>Activation successful</h2>
  </div>

  <div class="ui-state-highlight ui-corner-all success">
    <span class="close ui-icon ui-icon-circle-close" style="display:none;"></span>
    <p>
      <span class="ui-icon ui-icon-check"></span>
      Your account has been successfully activated.
    </p>
  </div>
  <p>
    You may now <a id="lnk_login" href="{% url auth_login %}">log in</a> to your account.
  </p>
{% else %}
  <div id="page_head">
    <h2>Activation failed</h2>
  </div>

  <p>
    We are unable to activate your account at this time. It is possible that the activation
    period for your account has expired. Please register your account again, or contact the
    site administrator for help resolving this issue.
  </p>
{% endif %}
{% endblock %}