Oppaitime's version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

recover_step1.php 1.2KB

12345678910111213141516171819202122232425262728293031323334
  1. <?
  2. BIC::challenge();
  3. View::show_header('Recover Password','validate');
  4. echo $Validate->GenerateJS('recoverform');
  5. ?>
  6. <form class="auth_form" name="recovery" id="recoverform" method="post" action="" onsubmit="return formVal();">
  7. <div style="width: 320px;">
  8. <span class="titletext">Reset your password - Step 1</span><br /><br />
  9. <?
  10. if (empty($Sent) || (!empty($Sent) && $Sent != 1)) {
  11. if (!empty($Err)) {
  12. ?>
  13. <strong class="important_text"><?=$Err ?></strong><br /><br />
  14. <? } ?>
  15. An email will be sent to your email address with information on how to reset your password.<br /><br />
  16. <table class="layout" cellpadding="2" cellspacing="1" border="0" align="center">
  17. <tr valign="top">
  18. <td align="right">Email address:&nbsp;</td>
  19. <td align="left"><input type="email" name="email" id="email" class="inputtext" /></td>
  20. </tr>
  21. <tr>
  22. <td colspan="2" align="right"><input type="submit" name="reset" value="Reset!" class="submit" /></td>
  23. </tr>
  24. </table>
  25. <?
  26. } else { ?>
  27. An email has been sent to you; please follow the directions in that email to reset your password.
  28. <?
  29. } ?>
  30. </div>
  31. </form>
  32. <?
  33. View::show_footer(['recover' => true]);
  34. ?>