MyShaarli/tpl/original/changepassword.html

26 lines
765 B
HTML
Raw Permalink Normal View History

2013-02-26 10:09:41 +01:00
<!DOCTYPE html>
<html>
2015-05-20 10:40:51 +02:00
<head>
{include="includes"}
</head>
<body>
2015-05-20 10:40:51 +02:00
<div id="pageheader">
{include="page.header"}
2015-07-17 11:28:43 +02:00
<form method="post" name="changepasswordform" id="changepasswordform">
2015-05-20 10:40:51 +02:00
<p>
<label for="oldpassword">Old password:</label>
<input type="password" name="oldpassword" id="oldpassword" autofocus/>
2015-05-20 10:40:51 +02:00
</p>
<p>
<label for="setpassword">New password:</label>
<input type="password" name="setpassword" id="setpassword">
</p>
<p>
<input type="hidden" name="token" value="{$token}">
<input type="submit" name="Save" value="Save password" class="bigbutton">
</p>
</form>
</div>
{include="page.footer"}
</body>
2013-02-26 10:09:41 +01:00
</html>