2017-01-14 15:52:17 +01:00
|
|
|
<!DOCTYPE html>
|
2019-02-09 14:29:35 +01:00
|
|
|
<html{if="$language !== 'auto'"} lang="{$language}"{/if}>
|
2017-01-14 15:52:17 +01:00
|
|
|
<head>
|
|
|
|
{include="includes"}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{include="page.header"}
|
|
|
|
<div class="pure-g">
|
|
|
|
<div class="pure-u-lg-1-3 pure-u-1-24"></div>
|
|
|
|
<div id="addlink-form" class="page-form page-form-light pure-u-lg-1-3 pure-u-22-24">
|
|
|
|
<h2 class="window-title">{"Change password"|t}</h2>
|
|
|
|
<form method="POST" action="#" name="changepasswordform" id="changepasswordform">
|
|
|
|
<div>
|
2019-07-13 00:07:50 +02:00
|
|
|
<input type="password" name="oldpassword" aria-label="{'Current password'|t}" placeholder="{'Current password'|t}" class="autofocus">
|
2017-01-14 15:52:17 +01:00
|
|
|
</div>
|
|
|
|
<div>
|
2019-07-13 00:07:50 +02:00
|
|
|
<input type="password" name="setpassword" aria-label="{'New password'|t}" placeholder="{'New password'|t}">
|
2017-01-14 15:52:17 +01:00
|
|
|
</div>
|
|
|
|
<input type="hidden" name="token" value="{$token}">
|
|
|
|
<div>
|
|
|
|
<input type="submit" value="{'Change'|t}">
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{include="page.footer"}
|
|
|
|
</body>
|
|
|
|
</html>
|