27 lines
673 B
HTML
27 lines
673 B
HTML
<%! from django.core.urlresolvers import reverse %>
|
|
<%inherit file="../base.html" />
|
|
|
|
<%namespace name='static' file='../static_content.html'/>
|
|
|
|
<%block name="content">
|
|
<section class="container activation">
|
|
|
|
<section class="message">
|
|
|
|
<p style='padding-top:100px; text-align:center;'>
|
|
%if not already_active:
|
|
Thanks for activating your account.
|
|
%else:
|
|
This account has already been activated.
|
|
%endif
|
|
|
|
%if user_logged_in:
|
|
Visit your <a href="/">dashboard</a> to see your courses.
|
|
%else:
|
|
You can now <a href="#login-modal" rel="leanModal">login</a>.
|
|
%endif
|
|
</p>
|
|
</section>
|
|
</section>
|
|
</%block>
|