php-mpos/public/templates/test/password/change/default.tpl
2013-10-03 12:20:44 +02:00

26 lines
940 B
Smarty

<article class="module width_half">
<form action="{$smarty.server.PHP_SELF}" method="post">
<input type="hidden" name="token" value="{$smarty.request.token|escape}">
<input type="hidden" name="page" value="{$smarty.request.page|escape}">
<input type="hidden" name="action" value="{$smarty.request.action|escape}">
<input type="hidden" name="do" value="resetPassword">
<header><h3>Password reset</h3></header>
<div class="module_content">
<fieldset>
<label>New Password</label>
<input type="password" name="newPassword" required>
</fieldset>
<fieldset>
<label>Repeat New Password</label>
<input type="password" name="newPassword2" required>
</fieldset>
<div class="clear"></div>
</div>
<footer>
<div class="submit_link">
<input type="submit" value="Change Password" class="alt_btn">
</div>
</footer>
</form>
</article>