Files
edx-platform/lms/templates/secondary_email_change_successful.html
Adeel Khan 632bee5177 Fix edx templates.
PROD-465
2019-07-25 10:44:37 +05:00

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>