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.4KB

123456789101112131415161718192021222324252627282930313233343536373839
  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.</p>
  16. <table class="layout" cellpadding="2" cellspacing="1" border="0" align="center">
  17. <tr valign="center">
  18. <!-- <td align="right"><strong>Email Address&nbsp;</strong></td> -->
  19. <td align="left">
  20. <input type="email" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" name="email"
  21. id="email" class="inputtext" required="required" maxlength="50"
  22. autofocus="autofocus" placeholder="Email" size="40"
  23. 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.</p>
  33. <?php
  34. } ?>
  35. </div>
  36. </form>
  37. <?php
  38. View::show_footer(['recover' => true]);
  39. ?>