activation_complete.html 749 Bytes
Newer Older
Calen Pennington committed
1 2 3 4 5
<%! from django.core.urlresolvers import reverse %>
<%inherit file="../base.html" />

<%namespace name='static' file='../static_content.html'/>

6 7 8 9 10 11
%if not user_logged_in: 
<%block name="bodyclass">
  not-signedin 
</%block>
%endif

12
<%block name="content">
Calen Pennington committed
13 14 15
<section class="container activation">

  <section class="message">
16 17

    <p style='padding-top:100px; text-align:center;'>
Calen Pennington committed
18
      %if not already_active:
19
        Thanks for activating your account.
Calen Pennington committed
20 21 22
      %else:
        This account has already been activated.
      %endif
23

Calen Pennington committed
24
      %if user_logged_in:
25
        Visit your <a href="/">dashboard</a> to see your courses.
Calen Pennington committed
26
      %else:
27
        You can now <a href="${reverse('login')}">login</a>.
Calen Pennington committed
28 29 30 31
      %endif
    </p>
  </section>
</section>
32
</%block>