29 lines
No EOL
870 B
HTML
29 lines
No EOL
870 B
HTML
<!DOCTYPE html>
|
|
<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>
|
|
<input type="password" name="setpassword" aria-label="{'New password'|t}" placeholder="{'New password'|t}">
|
|
|
|
<input type="hidden" name="token" value="{$token}">
|
|
<input type="submit" value="{'Change'|t}">
|
|
</form>
|
|
|
|
</section>
|
|
{include="page.footer"}
|
|
</body>
|
|
</html> |