source: trunk/services/templates/reset_password.ihtml @ 189

Last change on this file since 189 was 189, checked in by scdev, 18 years ago

Q - Added reset_password service. Fixed some bugs. Change the interface of humanTime() (it was called timeElapsed).

File size: 719 bytes
Line 
1<p><?php echo _("If you have forgotten your password enter your username here. A new password will be emailed to you."); ?></p>
2
3<form method="post" action="<?php echo oTxt($_SERVER['PHP_SELF']); ?>" class="sc-form">
4    <?php $app->printHiddenSession(); ?>
5    <input type="hidden" name="op" value="reset" />
6    <div class="sc-form-row<?php $fv->err('username'); ?>">
7        <label for="username"><?php echo _("Username"); ?></label>
8        <input type="text" name="username" id="username" class="sc-medium" value="<?php echo oTxt($frm['username']); ?>" />
9    </div>
10    <div class="sc-form-row sc-submit-buttons sc-clearboth">
11        <input type="submit" value="<?php echo _("Submit"); ?>" />
12    </div>
13</form>
Note: See TracBrowser for help on using the repository browser.