recover-password.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>AdminLTE 3 | Recover 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. <!-- icheck bootstrap -->
  12. <link rel="stylesheet" href="../../plugins/icheck-bootstrap/icheck-bootstrap.min.css">
  13. <!-- Theme style -->
  14. <link rel="stylesheet" href="../../dist/css/adminlte.min.css">
  15. <!-- Google Font: Source Sans Pro -->
  16. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
  17. </head>
  18. <body class="hold-transition login-page">
  19. <div class="login-box">
  20. <div class="login-logo">
  21. <a href="../../index2.html"><b>Admin</b>LTE</a>
  22. </div>
  23. <!-- /.login-logo -->
  24. <div class="card">
  25. <div class="card-body login-card-body">
  26. <p class="login-box-msg">You are only one step a way from your new password, recover your password now.</p>
  27. <form action="login.html" method="post">
  28. <div class="input-group mb-3">
  29. <input type="password" class="form-control" placeholder="Password">
  30. <div class="input-group-append">
  31. <div class="input-group-text">
  32. <span class="fas fa-lock"></span>
  33. </div>
  34. </div>
  35. </div>
  36. <div class="input-group mb-3">
  37. <input type="password" class="form-control" placeholder="Confirm Password">
  38. <div class="input-group-append">
  39. <div class="input-group-text">
  40. <span class="fas fa-lock"></span>
  41. </div>
  42. </div>
  43. </div>
  44. <div class="row">
  45. <div class="col-12">
  46. <button type="submit" class="btn btn-primary btn-block">Change password</button>
  47. </div>
  48. <!-- /.col -->
  49. </div>
  50. </form>
  51. <p class="mt-3 mb-1">
  52. <a href="login.html">Login</a>
  53. </p>
  54. </div>
  55. <!-- /.login-card-body -->
  56. </div>
  57. </div>
  58. <!-- /.login-box -->
  59. <!-- jQuery -->
  60. <script src="../../plugins/jquery/jquery.min.js"></script>
  61. <!-- Bootstrap 4 -->
  62. <script src="../../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
  63. <!-- AdminLTE App -->
  64. <script src="../../dist/js/adminlte.min.js"></script>
  65. </body>
  66. </html>