<title>${_("Your Password Reset is Complete")}</title>
<title>{% trans "Your Password Reset is Complete" %}</title>
{% compressed_css 'application' %}
...
...
@@ -54,13 +53,15 @@
<sectionclass="passwordreset container">
<sectionclass="introduction">
<header>
<h1>${_("Your Password Reset is Complete")}</h1>
<h1>{% trans "Your Password Reset is Complete" %}</h1>
</header>
</section>
{% block content %}
<sectionrole="main"class="content">
<p>${_('Your password has been set. You may go ahead and {link_start}log in{link_end} now.').format(link_start='<ahref="/login">', link_end='</a>')}</p>
{% blocktrans with link_start='<ahref="/login">' link_end='</a>' %}
Your password has been set. You may go ahead and {{ link_start }}log in{{ link_end }} now.
<h3class="message-title">${_("We're sorry, {platform_name} enrollment is not available in your region").format(platform_name=settings.PLATFORM_NAME)}</h3>
<h3class="message-title">{% trans "We're sorry, edX enrollment is not available in your region" %}</h3>
<h3class="message-title">${_("We're sorry, our systems seem to be having trouble processing your password reset")}</h3>
<pclass="message-copy">${_('Someone has been made aware of this issue. Please try again shortly. Please <ahref="{{MKTG_URL_CONTACT}}">contact us</a> about any concerns you have.')}</p>
<h3class="message-title">{% trans "We're sorry, our systems seem to be having trouble processing your password reset" %}</h3>
<pclass="message-copy">{% trans 'Someone has been made aware of this issue. Please try again shortly. Please <ahref="{{MKTG_URL_CONTACT}}">contact us</a> about any concerns you have.' %}</p>
</div>
<pclass="instructions">
${_('Please enter your new password twice so we can verify you typed it in correctly. <br/> '
'Required fields are noted by <strongclass="indicator">bold text and an asterisk (*)</strong>.')}
{% trans 'Please enter your new password twice so we can verify you typed it in correctly. <br/> Required fields are noted by <strongclass="indicator">bold text and an asterisk (*)</strong>.' %}
<buttonname="submit"type="submit"id="submit"class="action action-primary action-update">${_("Change My Password")}</button>
<buttonname="submit"type="submit"id="submit"class="action action-primary action-update">{% trans "Change My Password" %}</button>
</div>
</form>
{% else %}
<header>
<h2class="sr">${_("Your Password Reset Was Unsuccessful")}</h2>
<h2class="sr">{% trans "Your Password Reset Was Unsuccessful" %}</h2>
</header>
<p>${_('The password reset link was invalid, possibly because the link has already been used. Please return to the <ahref="/login">login page</a> and start the password reset process again.')}</p>
<p>{% trans 'The password reset link was invalid, possibly because the link has already been used. Please return to the <ahref="/login">login page</a> and start the password reset process again.' %}</p>
{% endif %}
</section>
<asiderole="complementary">
<header>
<h3class="sr">${_("Password Reset Help")}</h3>
<h3class="sr">{% trans "Password Reset Help" %}</h3>
</header>
<divclass="cta cta-help">
<h3>${_("Need Help?")}</h3>
<p>${_('View our <ahref="{{MKTG_URL_FAQ}}">help section for contact information and answers to commonly asked questions</a>')}</p>
<h3>{% trans "Need Help?" %}</h3>
<p>{% trans 'View our <ahref="{{MKTG_URL_FAQ}}">help section for contact information and answers to commonly asked questions</a>' %}</p>