forgot-password.html 2.3 KB

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