auth_layout.html 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>ILS Password Manager</title>
  6. <link rel="stylesheet" href="{{ url_for('static', filename='bootstrap-5.3.0-alpha1-dist/css/bootstrap.css') }}">
  7. <link rel="stylesheet" href="{{ url_for('static', filename='RemixIcon_Fonts_v2.5.0/fonts/remixicon.css') }}">
  8. <link rel="stylesheet" href="{{ url_for('static', filename='app.css') }}">
  9. <script src="{{ url_for('static', filename='bootstrap-5.3.0-alpha1-dist/js/bootstrap.bundle.js') }}"></script>
  10. <script src="{{ url_for('static', filename='bootstrap-5.3.0-alpha1-dist/js/popper.min.js') }}"></script>
  11. </head>
  12. <body>
  13. <div class="container mb-5">
  14. <div class="row mt-5">
  15. <div class="col-12 text-center">
  16. <h1>ILS Password Manager</h1>
  17. </div>
  18. </div>
  19. <div class="row mt-5 g-0 shadow bg-white">
  20. <div class="col-2 border" style="min-height:50vh;">
  21. <ul class="nav flex-column">
  22. <li class="nav-item">
  23. <a class="nav-link bg-light text-dark border-bottom" href="{{ url_for('admin') }}"><i class="ri-dashboard-fill"></i> Admin Dashboard</a>
  24. </li>
  25. <li class="nav-item">
  26. <a class="nav-link bg-light text-dark border-bottom" href="{{ url_for('admin_users') }}"><i class="ri-shield-user-line"></i> Admin Users</a>
  27. </li>
  28. <li class="nav-item">
  29. <a class="nav-link bg-light text-dark border-bottom" href="{{ url_for('admin_ils_users') }}"><i class="ri-shield-user-fill"></i> ILS Users</a>
  30. </li>
  31. <li class="nav-item">
  32. <a class="nav-link bg-light text-dark border-bottom" href="{{ url_for('schedule') }}"><i class="ri-time-line"></i> Schedule</a>
  33. </li>
  34. <li class="nav-item">
  35. <a class="nav-link bg-light text-dark border-bottom" href="{{ url_for('system_log') }}"><i class="ri-file-list-3-line"></i> System Log</a>
  36. </li>
  37. <li class="nav-item">
  38. <a class="nav-link bg-light text-dark border-bottom" href="{{ url_for('password_reset_log') }}"><i class="ri-file-list-3-line"></i> Password Reset Log</a>
  39. </li>
  40. <li class="nav-item">
  41. <a class="nav-link bg-light text-dark border-bottom" href="{{ url_for('settings') }}"><i class="ri-settings-5-line"></i> Settings</a>
  42. </li>
  43. <li class="nav-item">
  44. <a class="nav-link bg-danger text-white border-bottom" href="{{ url_for('logout') }}"><i class="ri-logout-box-line"></i> Logout</a>
  45. </li>
  46. </ul>
  47. </div>
  48. <div class="col-10 border-top border-end border-bottom p-3">
  49. {% block content %}{% endblock %}
  50. </div>
  51. </div>
  52. </div>
  53. <script>
  54. const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]')
  55. const tooltipList = [...tooltipTriggerList].map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl))
  56. </script>
  57. </body>
  58. </html>