auth_layout.html 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. <script src="{{ url_for('static', filename='bootstrap-5.3.0-alpha1-dist/js/bootstrap.bundle.js') }}"></script>
  9. </head>
  10. <body>
  11. <div class="container mb-5">
  12. <div class="row mt-5">
  13. <div class="col-12 text-center">
  14. <h1>ILS Password Manager</h1>
  15. </div>
  16. </div>
  17. <div class="row mt-5 g-0 shadow bg-white">
  18. <div class="col-2 border" style="min-height:50vh;">
  19. <ul class="nav flex-column">
  20. <li class="nav-item">
  21. <a class="nav-link bg-light text-dark border-bottom" href="{{ url_for('admin') }}"><i class="ri-dashboard-fill"></i> Admin Dashboard</a>
  22. </li>
  23. <li class="nav-item">
  24. <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>
  25. </li>
  26. <li class="nav-item">
  27. <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>
  28. </li>
  29. <li class="nav-item">
  30. <a class="nav-link bg-light text-dark border-bottom" href="{{ url_for('settings') }}"><i class="ri-settings-5-line"></i> Settings</a>
  31. </li>
  32. <li class="nav-item">
  33. <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>
  34. </li>
  35. <li class="nav-item">
  36. <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>
  37. </li>
  38. <li class="nav-item">
  39. <a class="nav-link bg-light text-dark border-bottom" href="{{ url_for('logout') }}"><i class="ri-logout-box-line"></i> Logout</a>
  40. </li>
  41. </ul>
  42. </div>
  43. <div class="col-10 border-top border-end border-bottom p-3">
  44. {% block content %}{% endblock %}
  45. </div>
  46. </div>
  47. </div>
  48. </body>
  49. </html>