## mako <%page expression_filter="h"/> <%! from django.utils.translation import ugettext as _ from openedx.core.djangolib.js_utils import js_escaped_string from openedx.core.djangolib.markup import HTML, Text %> <%inherit file="../main.html"/> <%namespace name='static' file='../static_content.html'/> <%block name="title"> ${_("Reset Your {platform_name} Password").format(platform_name=platform_name)} <%block name="head_extra"> <%block name="bodyclass">view-passwordreset <%block name="body">
% if validlink: ${static.renderReact( component="PasswordResetConfirmation", id="password-reset-confirm-react", props={ 'csrfToken': csrf_token, 'errorMessage': js_escaped_string(err_msg) if err_msg else '', }, )} % else:

${_("Invalid Password Reset Link")}

% endif