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.

forgot-password.html 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta content="width=device-width, initial-scale=1" name="viewport">
  6. <title>AdminLTE 3 | Forgot Password</title>
  7. <!-- Google Font: Source Sans Pro -->
  8. <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback"
  9. rel="stylesheet">
  10. <!-- Font Awesome -->
  11. <link href="../../plugins/fontawesome-free/css/all.min.css" rel="stylesheet">
  12. <!-- icheck bootstrap -->
  13. <link href="../../plugins/icheck-bootstrap/icheck-bootstrap.min.css" rel="stylesheet">
  14. <!-- Theme style -->
  15. <link href="../../dist/css/adminlte.min.css" rel="stylesheet">
  16. </head>
  17. <body class="hold-transition login-page">
  18. <div class="login-box">
  19. <div class="login-logo">
  20. <a href="../../index2.html"><b>Admin</b>LTE</a>
  21. </div>
  22. <!-- /.login-logo -->
  23. <div class="card">
  24. <div class="card-body login-card-body">
  25. <p class="login-box-msg">You forgot your password? Here you can easily retrieve a new password.</p>
  26. <form action="recover-password.html" method="post">
  27. <div class="input-group mb-3">
  28. <input class="form-control" placeholder="Email" type="email">
  29. <div class="input-group-append">
  30. <div class="input-group-text">
  31. <span class="fas fa-envelope"></span>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="row">
  36. <div class="col-12">
  37. <button class="btn btn-primary btn-block" type="submit">Request new password</button>
  38. </div>
  39. <!-- /.col -->
  40. </div>
  41. </form>
  42. <p class="mt-3 mb-1">
  43. <a href="login.html">Login</a>
  44. </p>
  45. <p class="mb-0">
  46. <a class="text-center" href="register.html">Register a new membership</a>
  47. </p>
  48. </div>
  49. <!-- /.login-card-body -->
  50. </div>
  51. </div>
  52. <!-- /.login-box -->
  53. <!-- jQuery -->
  54. <script src="../../plugins/jquery/jquery.min.js"></script>
  55. <!-- Bootstrap 4 -->
  56. <script src="../../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
  57. <!-- AdminLTE App -->
  58. <script src="../../dist/js/adminlte.min.js"></script>
  59. </body>
  60. </html>