schedule.html 2.1 KB

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