| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Attending Appointment</title>
- <script type="module" src="../javascripts/utils.js" async></script>
- <script type="module" src="../javascripts/schedule.js" async></script>
- <link rel="stylesheet" href="../stylesheets/style.css">
- <link rel="stylesheet" href="../stylesheets/navbar.css">
- <link rel="stylesheet" href="../stylesheets/schedule.css">
- </head>
- <body>
- <div class="content">
- <div class="container">
- <h1 class=heading>Attending an appointment</h1>
- <h3 id="title"></h3>
- <h4 id="place"></h4>
- <p id="description"></p>
- <div>
- <div class="input-group">
- <label for="email">Email</label>
- <input type="email" id="email" name="email" placeholder="johndoe@example.com" required>
- </div>
- <div class="input-group">
- <label for="firstname">First Name</label>
- <input type="text" id="firstname" name="firstname" placeholder="John" required>
- </div>
- <div class="input-group">
- <label for="lastname">Last Name</label>
- <input type="text" id="lastname" name="lastname" placeholder="Doe" required>
- </div>
- <!-- Preset Due Date -->
- <div class="input-group">
- <label for="due-date">Due Date</label>
- <input type="text" id="due-date" name="dueDate" readonly>
- </div>
- <!-- Preset Appointment Date -->
- <div class="input-group">
- <label for="appointment-date">Appointment Date</label>
- <input type="text" id="appointment-date" name="appointmentDate" readonly>
- </div>
- <!-- Preset Time Span -->
- <div class="input-group">
- <label for="time-span">Time Span</label>
- <input type="text" id="time-span" name="timeSpan" value="10:00 AM to 12:00 PM" readonly>
- </div>
- <button type="submit" id="btn-attend" class="btn-submit">Attend</button>
- </div>
- <p class="msg-error" id="appointment-error"></p>
- <p class="msg-success" id="appointment-success"></p>
- </div>
- </div>
- </body>
- </html>
|