php-mpos/public/templates/mpos/password/change/default.tpl
Sebastian Grewe 02c9be54ed [MAJOR] Changing project name to MPOS
* Adjusted mmcfe-ng occurences in code
* Adjusted Database strucutre to only supply the full structure
* Adjusted default template to MPOS

Addresses #643
2013-10-07 10:10:49 +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>