2013-02-26 10:09:41 +01:00
|
|
|
<!DOCTYPE html>
|
2025-04-18 10:57:05 +02:00
|
|
|
<html{if="$language !=='auto'"} lang=" {$language}"{/if}>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
{include="includes"}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
{include="page.header"}
|
|
|
|
<section>
|
|
|
|
|
|
|
|
<h2>{"Change password"|t}</h2>
|
|
|
|
<form method="POST" action="{$base_path}/admin/password" name="changepasswordform" id="changepasswordform">
|
|
|
|
|
|
|
|
<label>{'Current password'|t}</label>
|
|
|
|
<input type="password" name="oldpassword" aria-label="{'Current password'|t}"
|
|
|
|
placeholder="{'Current password'|t}" class="autofocus">
|
|
|
|
|
|
|
|
<label>{'New password'|t}</label>
|
2019-08-12 14:16:22 +02:00
|
|
|
<input type="password" name="setpassword" aria-label="{'New password'|t}" placeholder="{'New password'|t}">
|
2025-04-18 10:57:05 +02:00
|
|
|
|
|
|
|
<input type="hidden" name="token" value="{$token}">
|
2017-12-15 12:16:50 +01:00
|
|
|
<input type="submit" value="{'Change'|t}">
|
2025-04-18 10:57:05 +02:00
|
|
|
</form>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
{include="page.footer"}
|
|
|
|
</body>
|
|
|
|
</html>
|