This is just a WiP to test a new website template. Taken online from source referenced in the sidebar footer. Very nice and clean look, have not had the time to add all features yet and is only used to demonstrate it.
26 lines
932 B
Smarty
26 lines
932 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="text" name="newPassword" required>
|
|
</fieldset>
|
|
<fieldset>
|
|
<label>Repeat New Password</label>
|
|
<input type="text" 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>
|