password.html 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
  7. <meta name="description" content="" />
  8. <meta name="author" content="" />
  9. <title>Password Reset - SB Admin</title>
  10. <link href="css/styles.css" rel="stylesheet" />
  11. <script src="https://use.fontawesome.com/releases/v6.3.0/js/all.js" crossorigin="anonymous"></script>
  12. </head>
  13. <body class="bg-primary">
  14. <div id="layoutAuthentication">
  15. <div id="layoutAuthentication_content">
  16. <main>
  17. <div class="container">
  18. <div class="row justify-content-center">
  19. <div class="col-lg-5">
  20. <div class="card shadow-lg border-0 rounded-lg mt-5">
  21. <div class="card-header"><h3 class="text-center font-weight-light my-4">Password Recovery</h3></div>
  22. <div class="card-body">
  23. <div class="small mb-3 text-muted">Enter your email address and we will send you a link to reset your password.</div>
  24. <form>
  25. <div class="form-floating mb-3">
  26. <input class="form-control" id="inputEmail" type="email" placeholder="name@example.com" />
  27. <label for="inputEmail">Email address</label>
  28. </div>
  29. <div class="d-flex align-items-center justify-content-between mt-4 mb-0">
  30. <a class="small" href="login.html">Return to login</a>
  31. <a class="btn btn-primary" href="login.html">Reset Password</a>
  32. </div>
  33. </form>
  34. </div>
  35. <div class="card-footer text-center py-3">
  36. <div class="small"><a href="register.html">Need an account? Sign up!</a></div>
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. </div>
  42. </main>
  43. </div>
  44. <div id="layoutAuthentication_footer">
  45. <footer class="py-4 bg-light mt-auto">
  46. <div class="container-fluid px-4">
  47. <div class="d-flex align-items-center justify-content-between small">
  48. <div class="text-muted">Copyright &copy; Your Website 2023</div>
  49. <div>
  50. <a href="#">Privacy Policy</a>
  51. &middot;
  52. <a href="#">Terms &amp; Conditions</a>
  53. </div>
  54. </div>
  55. </div>
  56. </footer>
  57. </div>
  58. </div>
  59. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
  60. <script src="js/scripts.js"></script>
  61. </body>
  62. </html>