18 lines
535 B
HTML
18 lines
535 B
HTML
<%! from django.utils.translation import ugettext as _ %>
|
|
|
|
<%! from django.core.urlresolvers import reverse %>
|
|
<%inherit file="main.html" />
|
|
|
|
<section class="container activation">
|
|
|
|
<section class="message">
|
|
<h1 class="valid">${_("E-mail change successful!")}</h1>
|
|
<hr class="horizontal-divider">
|
|
|
|
<p>${_('You should see your new email in your {link_start}dashboard{link_end}.').format(
|
|
link_start='<a href="{url}">'.format(url=reverse('dashboard')),
|
|
link_end='</a>',
|
|
)}</p>
|
|
</section>
|
|
</section>
|