[ 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
/
templates
/
user
/
[
Home
]
File: changePassword.tpl
{** * templates/user/changePassword.tpl * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2003-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * Form to change a user's password. * *} {strip} {assign var="pageTitle" value="user.changePassword"} {url|assign:"currentUrl" page="user" op="changePassword"} {include file="common/header.tpl"} {/strip} <div id="changePassword"> <form method="post" action="{url op="savePassword"}"> {include file="common/formErrors.tpl"} {if $implicitAuth} <p><span class="instruct">{translate key="user.profile.implicitAuthChangePasswordInstructions"}</span></p> {/if} <p><span class="instruct">{translate key="user.profile.changePasswordInstructions"}</span></p> <table class="data" width="100%"> <tr valign="top"> <td width="20%" class="label">{fieldLabel name="oldPassword" key="user.profile.oldPassword"}</td> <td width="80%" class="value"><input type="password" name="oldPassword" id="oldPassword" value="{$oldPassword|escape}" size="20" class="textField" /></td> </tr> <tr valign="top"> <td class="label">{fieldLabel name="password" key="user.profile.newPassword"}</td> <td class="value"><input type="password" name="password" value="{$password|escape}" id="password" size="20" class="textField" /></td> </tr> <tr valign="top"> <td></td> <td><span class="instruct">{translate key="user.register.passwordLengthRestriction" length=$minPasswordLength}</span></td> </tr> <tr valign="top"> <td class="label">{fieldLabel name="password2" key="user.profile.repeatNewPassword"}</td> <td class="value"><input type="password" name="password2" id="password2" value="{$password2|escape}" size="20" class="textField" /></td> </tr> </table> <p><input type="submit" value="{translate key="common.save"}" class="button defaultButton" /> <input type="button" value="{translate key="common.cancel"}" class="button" onclick="document.location.href='{url page="user" escape=false}'" /></p> </form> </div> {include file="common/footer.tpl"}