Files
edx-platform/lms/templates/secondary_email_change_failed.html
2018-12-27 18:51:55 +05:00

21 lines
695 B
HTML

## xss-lint: disable=mako-missing-default,python-wrap-html
<%! from django.utils.translation import ugettext as _ %>
<%inherit file="main.html" />
<section class="container activation">
<section class="message">
<h1 class="invalid">${_("Secondary e-mail change failed")}</h1>
<hr class="horizontal-divider">
% if err_msg:
<p>${err_msg}</p>
% else:
<p>${_("We were unable to activate your secondary email {secondary_email}").format(secondary_email=secondary_email)}</p>
% endif
## xss-lint: disable=python-wrap-html
<p>${_('Go back to the {link_start}home page{link_end}.').format(link_start='<a href="/">', link_end='</a>')}</p>
</section>
</section>