| 1234567891011121314151617181920212223242526272829303132 |
- <!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 src="../javascripts/appointments.js" async></script>
- <link rel="stylesheet" href="../stylesheets/appointments.css">
- </head>
- <body>
- <div class="container">
- <h2>Appointments</h2>
- <table>
- <thead>
- <tr>
- <th>Title</th>
- <th>Description</th>
- <th>Due Date</th>
- <th>Place</th>
- <th>Time Span</th>
- <th>Participants</th>
- <th>Edit</th>
- <th>Delete</th>
- </tr>
- </thead>
- <tbody id="appointment-table-body">
- <!-- Data will be inserted here via JavaScript -->
- </tbody>
- </table>
- </div>
- </body>
- </html>
|