16 lines
344 B
HTML
16 lines
344 B
HTML
<%! from django.utils.translation import ugettext as _ %>
|
|
<%inherit file="base.html" />
|
|
|
|
<%block name="content">
|
|
|
|
<section class="tos">
|
|
<div>
|
|
|
|
<section class="activation">
|
|
<h1>${_("Account already active!")}</h1>
|
|
<p>${_('This account has already been activated.')}<a href="/signin">${_("Log in here.")}</a></p>
|
|
</div>
|
|
</section>
|
|
|
|
</%block>
|