appointments.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Appointment Table</title>
  7. <script type="module" src="../javascripts/utils.js" async></script>
  8. <script type="module" src="../javascripts/appointments.js" async></script>
  9. <script type="module" src="../javascripts/navbar.js" async></script>
  10. <link rel="stylesheet" href="../stylesheets/style.css">
  11. <link rel="stylesheet" href="../stylesheets/navbar.css">
  12. <link rel="stylesheet" href="../stylesheets/tables.css">
  13. <link rel="stylesheet" href="../stylesheets/appointments.css">
  14. </head>
  15. <body>
  16. <nav class="navbar">
  17. <div class="navbar-brand">Scheduler</div>
  18. <ul class="navbar-links">
  19. <li><a href="/html/appointments.html">Appointments</a></li>
  20. <li><a href="/html/appointmentscreator.html">Create</a></li>
  21. <li><a href="#" id="logout-button">Logout</a></li>
  22. </ul>
  23. </nav>
  24. <div class="content hidden" id="content">
  25. <div class="container">
  26. <h2 class="heading">Appointments</h2>
  27. <table>
  28. <thead>
  29. <tr>
  30. <th>Title</th>
  31. <th>Description</th>
  32. <th>Due Date</th>
  33. <th>Place</th>
  34. <th>Time Span</th>
  35. <th>Share</th>
  36. <th>Participants</th>
  37. <th>Edit</th>
  38. <th>Delete</th>
  39. </tr>
  40. </thead>
  41. <tbody id="appointment-table-body">
  42. <!-- Data will be inserted here via JavaScript -->
  43. </tbody>
  44. </table>
  45. </div>
  46. </div>
  47. </body>
  48. </html>