21 lines
654 B
HTML
21 lines
654 B
HTML
<%page expression_filter="h"/>
|
|
<%inherit file="main.html" />
|
|
<%!
|
|
from django.utils.translation import ugettext as _
|
|
from django.urls import reverse
|
|
from openedx.core.djangolib.markup import HTML, Text
|
|
|
|
%>
|
|
|
|
<section class="container activation">
|
|
<section class="message">
|
|
<h1 class="valid">${_("Secondary e-mail change successful!")}</h1>
|
|
<hr class="horizontal-divider">
|
|
|
|
<p>${Text(_('Your secondary email has been activated. Please visit {link_start}dashboard{link_end} for courses.')).format(
|
|
link_start=HTML('<a href="{url}">').format(url=reverse('dashboard')),
|
|
link_end=HTML('</a>'),
|
|
)}</p>
|
|
</section>
|
|
</section>
|