| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Appointment Table</title>
- <script type="module" src="../javascripts/utils.js" async></script>
- <script type="module" src="../javascripts/appointments.js" async></script>
- <script type="module" src="../javascripts/navbar.js" async></script>
- <link rel="stylesheet" href="../stylesheets/style.css">
- <link rel="stylesheet" href="../stylesheets/screen.css">
- <link rel="stylesheet" href="../stylesheets/navbar.css">
- <link rel="stylesheet" href="../stylesheets/tables.css">
- <link rel="stylesheet" href="../stylesheets/appointments.css">
- </head>
- <body>
- <nav class="navbar">
- <div class="navbar-brand">Scheduler</div>
- <ul class="navbar-links">
- <li><a href="/html/appointments.html">Appointments</a></li>
- <li><a href="/html/appointmentscreator.html">Create</a></li>
- <li><a href="#" id="logout-button">Logout</a></li>
- </ul>
- </nav>
- <h1 class="msg-screen-size">Please turn your screen or switch to a device with a larger screen</h1>
- <div class="content hidden" id="content">
- <div class="container">
- <h2 class="heading">Appointments</h2>
- <table>
- <thead>
- <tr>
- <th>Title</th>
- <th>Description</th>
- <th>Due Date</th>
- <th>Place</th>
- <th>Time Span</th>
- <th>Share</th>
- <th>Participants</th>
- <th>Edit</th>
- <th>Delete</th>
- </tr>
- </thead>
- <tbody id="appointment-table-body">
- </tbody>
- </table>
- </div>
- </div>
- </body>
- </html>
|