diff --git a/rhodecode/templates/login.html b/rhodecode/templates/login.html --- a/rhodecode/templates/login.html +++ b/rhodecode/templates/login.html @@ -62,9 +62,14 @@
%elif h.HasPermissionAny('hg.password_reset.hidden')():- ${_('Contact an administrator if you have forgotten your password.')} + ${_('Password reset is disabled. Please contact ')} + % if c.visual.rhodecode_support_url: + ${_('Support')} + ${_('or')} + % endif + ${_('an administrator if you need help.')}
- %endif + %endif ${h.submit('sign_in', _('Sign In'), class_="btn sign-in")} diff --git a/rhodecode/templates/password_reset.html b/rhodecode/templates/password_reset.html --- a/rhodecode/templates/password_reset.html +++ b/rhodecode/templates/password_reset.html @@ -2,7 +2,7 @@ <%inherit file="base/root.html"/> <%def name="title()"> - ${_('Create an Account')} + ${_('Reset Password')} %if c.rhodecode_name: · ${h.branding(c.rhodecode_name)} %endif @@ -30,7 +30,14 @@ %if h.HasPermissionAny('hg.password_reset.disabled')():${_('Password reset has been disabled.')}
++ ${_('Password reset is disabled. Please contact ')} + % if c.visual.rhodecode_support_url: + ${_('Support')} + ${_('or')} + % endif + ${_('an administrator if you need help.')} +