appointments.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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/screen.css">
  12. <link rel="stylesheet" href="../stylesheets/navbar.css">
  13. <link rel="stylesheet" href="../stylesheets/tables.css">
  14. <link rel="stylesheet" href="../stylesheets/appointments.css">
  15. </head>
  16. <body>
  17. <nav class="navbar">
  18. <div class="navbar-brand">Scheduler</div>
  19. <ul class="navbar-links">
  20. <li><a href="/html/appointments.html">Appointments</a></li>
  21. <li><a href="/html/appointmentscreator.html">Create</a></li>
  22. <li><a href="#" id="logout-button">Logout</a></li>
  23. </ul>
  24. </nav>
  25. <h1 class="msg-screen-size">Please turn your screen or switch to a device with a larger screen</h1>
  26. <div class="content hidden" id="content">
  27. <div class="container">
  28. <h2 class="heading">Appointments</h2>
  29. <table>
  30. <thead>
  31. <tr>
  32. <th>Title</th>
  33. <th>Description</th>
  34. <th>Due Date</th>
  35. <th>Place</th>
  36. <th>Time Span</th>
  37. <th>Share</th>
  38. <th>Participants</th>
  39. <th>Edit</th>
  40. <th>Delete</th>
  41. </tr>
  42. </thead>
  43. <tbody id="appointment-table-body">
  44. </tbody>
  45. </table>
  46. </div>
  47. </div>
  48. </body>
  49. </html>