MyShaarli/tpl/vintage/changepassword.html

16 lines
589 B
HTML
Raw Permalink Normal View History

2013-02-26 10:09:41 +01:00
<!DOCTYPE html>
<html>
<head>{include="includes"}</head>
<body onload="document.changepasswordform.oldpassword.focus();">
<div id="pageheader">
{include="page.header"}
2023-05-24 11:35:15 +02:00
<form method="POST" action="{$base_path}/admin/password" name="changepasswordform" id="changepasswordform">
2013-02-26 10:09:41 +01:00
Old password: <input type="password" name="oldpassword">&nbsp; &nbsp;
New password: <input type="password" name="setpassword">
<input type="hidden" name="token" value="{$token}">
<input type="submit" name="Save" value="Save password" class="bigbutton"></form>
</div>
{include="page.footer"}
</body>
2023-05-24 11:35:15 +02:00
</html>