schedule.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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>Attending Appointment</title>
  7. <script type="module" src="../javascripts/utils.js" async></script>
  8. <script type="module" src="../javascripts/schedule.js" async></script>
  9. <link rel="stylesheet" href="../stylesheets/style.css">
  10. <link rel="stylesheet" href="../stylesheets/navbar.css">
  11. <link rel="stylesheet" href="../stylesheets/schedule.css">
  12. </head>
  13. <body>
  14. <div class="content">
  15. <div class="container">
  16. <h1 class=heading>Attending an appointment</h1>
  17. <h3 id="title"></h3>
  18. <h4 id="place"></h4>
  19. <p id="description"></p>
  20. <div>
  21. <div class="input-group">
  22. <label for="email">Email</label>
  23. <input type="email" id="email" name="email" placeholder="johndoe@example.com" required>
  24. </div>
  25. <div class="input-group">
  26. <label for="firstname">First Name</label>
  27. <input type="text" id="firstname" name="firstname" placeholder="John" required>
  28. </div>
  29. <div class="input-group">
  30. <label for="lastname">Last Name</label>
  31. <input type="text" id="lastname" name="lastname" placeholder="Doe" required>
  32. </div>
  33. <!-- Preset Due Date -->
  34. <div class="input-group">
  35. <label for="due-date">Due Date</label>
  36. <input type="text" id="due-date" name="dueDate" readonly>
  37. </div>
  38. <!-- Preset Appointment Date -->
  39. <div class="input-group">
  40. <label for="appointment-date">Appointment Date</label>
  41. <input type="text" id="appointment-date" name="appointmentDate" readonly>
  42. </div>
  43. <!-- Preset Time Span -->
  44. <div class="input-group">
  45. <label for="time-span">Time Span</label>
  46. <input type="text" id="time-span" name="timeSpan" value="10:00 AM to 12:00 PM" readonly>
  47. </div>
  48. <button type="submit" id="btn-attend" class="btn-submit">Attend</button>
  49. </div>
  50. <p class="msg-error" id="appointment-error"></p>
  51. <p class="msg-success" id="appointment-success"></p>
  52. </div>
  53. </div>
  54. </body>
  55. </html>