[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
lib
/
pkp
/
templates
/
user
/
[
Home
]
File: loginChangePassword.tpl
{** * templates/user/loginChangePassword.tpl * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2000-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * Form to change a user's password in order to login. * *} {strip} {assign var="pageTitle" value="user.changePassword"} {url|assign:"currentUrl" page="login" op="changePassword"} {include file="common/header.tpl"} {/strip} <script type="text/javascript"> $(function() {ldelim} // Attach the form handler. $('#loginChangePassword').pkpHandler('$.pkp.controllers.form.FormHandler'); {rdelim}); </script> {if !$passwordLengthRestrictionLocaleKey} {assign var="passwordLengthRestrictionLocaleKey" value="user.register.passwordLengthRestriction"} {/if} <form class="pkp_form" id="loginChangePassword" method="post" action="{url page="login" op="savePassword"}"> {if $confirmHash} <input type="hidden" value="{$confirmHash|escape}" name="confirmHash" /> {/if} {include file="common/formErrors.tpl"} <p><span class="instruct">{if !$confirmHash}{translate key="user.login.changePasswordInstructions"}{else}{translate key="user.login.changePasswordInstructionsOneStep"}{/if}</span></p> {fbvFormArea id="loginFields"} {fbvFormSection label="user.username" for="username"} {fbvElement type="text" required=true id="username" value=$username|escape maxlength="32" size=$fbvStyles.size.MEDIUM} {/fbvFormSection} {if !$confirmHash} {fbvFormSection label="user.profile.oldPassword" for="oldPassword"} {fbvElement type="text" required=true password=true id="oldPassword" value=$oldPassword|escape maxlength="32" size=$fbvStyles.size.MEDIUM} {/fbvFormSection} {/if} {fbvFormSection label="user.profile.newPassword" for="password"} {fbvElement type="text" required=true password=true id="password" value=$password|escape 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|escape maxlength="32" size=$fbvStyles.size.MEDIUM} {/fbvFormSection} {fbvFormButtons} {/fbvFormArea} </form> {include file="common/footer.tpl"}