BioTorrents.de’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.5KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. View::show_header('Recover Password', 'validate');
  3. echo $Validate->GenerateJS('recoverform');
  4. ?>
  5. <form class="auth_form" name="recovery" id="recoverform" method="post" action="" onsubmit="return formVal();">
  6. <div style="width: 250px;">
  7. <p class="titletext"><strong>Reset Your Password</strong></p>
  8. <?php
  9. if (empty($Sent) || (!empty($Sent) && $Sent != 1)) {
  10. if (!empty($Err)) {
  11. ?>
  12. <strong class="important_text"><?=$Err ?></strong>
  13. <?php
  14. } ?>
  15. <p>An email will be sent to your email address with information on how to reset your password. Please remember to
  16. check your spam folder.</p>
  17. <table class="layout" cellpadding="2" cellspacing="1" border="0" align="center">
  18. <tr valign="center">
  19. <!-- <td align="right"><strong>Email Address&nbsp;</strong></td> -->
  20. <td align="left">
  21. <input type="email" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" name="email"
  22. id="email" class="inputtext" required="required" maxlength="50" autofocus="autofocus" placeholder="Email"
  23. size="40" autocomplete="email" />
  24. </td>
  25. </tr>
  26. <tr>
  27. <td colspan="2" align="right"><input type="submit" name="reset" value="Reset" class="submit" /></td>
  28. </tr>
  29. </table>
  30. <?php
  31. } else { ?>
  32. <p>An email has been sent to you. Please follow the directions to reset your password and remember to check your
  33. spam folder.</p>
  34. <?php
  35. } ?>
  36. </div>
  37. </form>
  38. <?php
  39. View::show_footer(['recover' => true]);