appointmentscreator.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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>Create Appointment</title>
  7. <link rel="stylesheet" href="../stylesheets/create-appointment.css">
  8. <script src="../javascripts/creator-appointments.js" async></script>
  9. </head>
  10. <body>
  11. <div class="container">
  12. <h2>Create Appointment</h2>
  13. <div id="appointment-form">
  14. <div class="input-group">
  15. <label for="title">Title</label>
  16. <input type="text" id="title" placeholder="Enter title" required>
  17. </div>
  18. <div class="input-group">
  19. <label for="description">Description</label>
  20. <textarea id="description" placeholder="Enter description" rows="4" required></textarea>
  21. </div>
  22. <div class="input-group">
  23. <label for="dueDate">Due Date</label>
  24. <input type="date" id="dueDate" required>
  25. </div>
  26. <div class="input-group">
  27. <label for="startDate">Start Date</label>
  28. <input type="datetime-local" id="startDate" required>
  29. </div>
  30. <div class="input-group">
  31. <label for="endDate">End Date</label>
  32. <input type="datetime-local" id="endDate" required>
  33. </div>
  34. <div class="input-group">
  35. <label for="place">Place</label>
  36. <input type="text" id="place" placeholder="Enter location" required>
  37. </div>
  38. <button type="submit" class="btn-submit" id="appointment-btn">Create Appointment</button>
  39. <p id="appointment-error"></p>
  40. <p id="appointment-success"></p>
  41. </div>
  42. </div>
  43. </body>
  44. </html>