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.
21 lines
743 B
Smarty
21 lines
743 B
Smarty
<article class="module width_half">
|
|
<form action="" method="POST">
|
|
<input type="hidden" name="page" value="password">
|
|
<input type="hidden" name="action" value="reset">
|
|
<header><h3>Password reset</h3></header>
|
|
<div class="module_content">
|
|
<p>If you have an email set for your account, enter your username to get your password reset</p>
|
|
<fieldset>
|
|
<label>Username</label>
|
|
<input type="text" name="username" value="{$smarty.post.username|default:""}" size="22" maxlength="20" required>
|
|
</fieldset>
|
|
<div class="clear"></div>
|
|
</div>
|
|
<footer>
|
|
<div class="submit_link">
|
|
<input type="submit" value="Reset" class="alt_btn">
|
|
</div>
|
|
</footer>
|
|
</form>
|
|
</article>
|