{** * templates/user/loginChangePassword.tpl * * Copyright (c) 2014-2021 Simon Fraser University * Copyright (c) 2000-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * Form to change a user's password in order to login. * *} {extends file="layouts/backend.tpl"} {block name="page"}

{translate key="user.changePassword"}

{if !$passwordLengthRestrictionLocaleKey} {assign var="passwordLengthRestrictionLocaleKey" value="user.register.form.passwordLengthRestriction"} {/if}
{csrf} {include file="common/formErrors.tpl"}

{translate key="user.login.changePasswordInstructions"}

{fbvFormArea id="loginFields"} {fbvFormSection label="user.login" for="username"} {fbvElement type="text" required=true id="username" value=$username maxlength="32" size=$fbvStyles.size.MEDIUM} {/fbvFormSection} {fbvFormSection label="user.profile.oldPassword" for="oldPassword"} {fbvElement type="text" required=true password=true id="oldPassword" value=$oldPassword maxlength="32" size=$fbvStyles.size.MEDIUM} {/fbvFormSection} {fbvFormSection label="user.profile.newPassword" for="password"} {fbvElement type="text" required=true password=true id="password" value=$password maxlength="32" size=$fbvStyles.size.MEDIUM} {fieldLabel translate=true for=password key=$passwordLengthRestrictionLocaleKey length=$minPasswordLength} {/fbvFormSection} {fbvFormSection label="user.profile.repeatNewPassword" for="password2"} {fbvElement type="text" required=true password=true id="password2" value=$password2|default:""|escape maxlength="32" size=$fbvStyles.size.MEDIUM} {/fbvFormSection}

{capture assign="privacyUrl"}{url router=\PKP\core\PKPApplication::ROUTE_PAGE page="about" op="privacy"}{/capture} {translate key="user.privacyLink" privacyUrl=$privacyUrl}

{translate key="common.requiredField"}

{fbvFormButtons hideCancel=true} {/fbvFormArea}
{/block}