resetpass.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. define('IN_SYS', true);
  3. require_once ("core.php");
  4. $domain = "uiisc.com";
  5. $logged_ipaddress = "116.228.234.98";
  6. ?>
  7. <!DOCTYPE html>
  8. <html lang="en">
  9. <head>
  10. <meta charset="utf-8">
  11. <title><?=$title?> - Lost Password / Password Recovery</title>
  12. <?php include ("headmate.php"); ?>
  13. </head>
  14. <body>
  15. <?php include ("nav.php"); ?>
  16. <div class="bs-docs-header">
  17. <div class="container">
  18. <h1>Password Reset</h1>
  19. <p>Lost Password Retrieval System</p>
  20. </div>
  21. </div>
  22. <div class="container">
  23. <blink>ipaddress logged <?=$logged_ipaddress?></blink>
  24. <!-- <h2 data-i18n="password_eset">Lost Password Retrieval System</h2> -->
  25. <div class="form-group form-horizontal form-account">
  26. <!-- <h2 data-i18n="password_eset">Password Reset</h2> -->
  27. <input type="hidden" name="ipaddress" value="<?=$logged_ipaddress?>">
  28. <div class="form-group">
  29. <label for="inputUsername" class="control-label" data-i18n="username">Username</label>
  30. <input type="text" name="username" class="form-control" id="inputUsername" placeholder="Username" data-i18n="input_username" required autofocus>
  31. </div>
  32. <div class="form-group">
  33. <label for="inputEmail" class="control-label" data-i18n="email">Email Address</label>
  34. <input type="email" name="email" class="form-control" id="inputEmail" placeholder="Email Address" data-i18n="input_email" required>
  35. </div>
  36. <div class="form-group">
  37. <label>Not yet have an account ?</label>
  38. <label><a href="register.php"><?php echo $LANG['register']; ?></a></label>
  39. </div>
  40. <div class="form-group">
  41. <button type="submit" name="submit" class="btn btn-lg btn-primary btn-block">Submit</button>
  42. </div>
  43. </div>
  44. <div class="row">
  45. <p>In the above form, enter the username and the REGISTERED email address that was used when signing up for the account.<br>
  46. We will then email the registered email address with reset account details.
  47. </p>
  48. </div>
  49. </div>
  50. <?php include ("footer.php"); ?>
  51. </body>
  52. </html>