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-password.html 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 | Recover 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 are only one step a way from your new password, recover your password now.</p>
  26. <form action="login.html" method="post">
  27. <div class="input-group mb-3">
  28. <input class="form-control" placeholder="Password" type="password">
  29. <div class="input-group-append">
  30. <div class="input-group-text">
  31. <span class="fas fa-lock"></span>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="input-group mb-3">
  36. <input class="form-control" placeholder="Confirm Password" type="password">
  37. <div class="input-group-append">
  38. <div class="input-group-text">
  39. <span class="fas fa-lock"></span>
  40. </div>
  41. </div>
  42. </div>
  43. <div class="row">
  44. <div class="col-12">
  45. <button class="btn btn-primary btn-block" type="submit">Change password</button>
  46. </div>
  47. <!-- /.col -->
  48. </div>
  49. </form>
  50. <p class="mt-3 mb-1">
  51. <a href="login.html">Login</a>
  52. </p>
  53. </div>
  54. <!-- /.login-card-body -->
  55. </div>
  56. </div>
  57. <!-- /.login-box -->
  58. <!-- jQuery -->
  59. <script src="../../plugins/jquery/jquery.min.js"></script>
  60. <!-- Bootstrap 4 -->
  61. <script src="../../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
  62. <!-- AdminLTE App -->
  63. <script src="../../dist/js/adminlte.min.js"></script>
  64. </body>
  65. </html>