login.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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>Login - 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">Login</h3></div>
  22. <div class="card-body">
  23. <form>
  24. <div class="form-floating mb-3">
  25. <input class="form-control" id="inputEmail" type="email" placeholder="name@example.com" />
  26. <label for="inputEmail">Email address</label>
  27. </div>
  28. <div class="form-floating mb-3">
  29. <input class="form-control" id="inputPassword" type="password" placeholder="Password" />
  30. <label for="inputPassword">Password</label>
  31. </div>
  32. <div class="form-check mb-3">
  33. <input class="form-check-input" id="inputRememberPassword" type="checkbox" value="" />
  34. <label class="form-check-label" for="inputRememberPassword">Remember Password</label>
  35. </div>
  36. <div class="d-flex align-items-center justify-content-between mt-4 mb-0">
  37. <a class="small" href="password.html">Forgot Password?</a>
  38. <a class="btn btn-primary" href="index.html">Login</a>
  39. </div>
  40. </form>
  41. </div>
  42. <div class="card-footer text-center py-3">
  43. <div class="small"><a href="register.html">Need an account? Sign up!</a></div>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. </main>
  50. </div>
  51. <div id="layoutAuthentication_footer">
  52. <footer class="py-4 bg-light mt-auto">
  53. <div class="container-fluid px-4">
  54. <div class="d-flex align-items-center justify-content-between small">
  55. <div class="text-muted">Copyright &copy; Your Website 2023</div>
  56. <div>
  57. <a href="#">Privacy Policy</a>
  58. &middot;
  59. <a href="#">Terms &amp; Conditions</a>
  60. </div>
  61. </div>
  62. </div>
  63. </footer>
  64. </div>
  65. </div>
  66. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
  67. <script src="js/scripts.js"></script>
  68. </body>
  69. </html>