Files
edx-platform/lms/templates/email_exists.html
2013-07-31 19:39:15 -04:00

16 lines
470 B
HTML

<%! from django.utils.translation import ugettext as _ %>
<%inherit file="main.html" />
<section class="container activation">
<section class="message">
<h1 class="invalid">${_("E-mail change failed")}</h1>
<hr class="horizontal-divider">
<p>${_("An account with the new e-mail address already exists.")}</p>
<p>${_("Go back to the {link_start}home page{link_end}.").format(link_start='<a href="/">', link_end='</a>')}</p>
</section>
</section>