| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Create Appointment</title>
- <link rel="stylesheet" href="../stylesheets/create-appointment.css">
- <script src="../javascripts/creator-appointments.js" async></script>
- </head>
- <body>
- <div class="container">
- <h2>Create Appointment</h2>
- <div id="appointment-form">
- <div class="input-group">
- <label for="title">Title</label>
- <input type="text" id="title" placeholder="Enter title" required>
- </div>
- <div class="input-group">
- <label for="description">Description</label>
- <textarea id="description" placeholder="Enter description" rows="4" required></textarea>
- </div>
- <div class="input-group">
- <label for="dueDate">Due Date</label>
- <input type="date" id="dueDate" required>
- </div>
- <div class="input-group">
- <label for="startDate">Start Date</label>
- <input type="datetime-local" id="startDate" required>
- </div>
- <div class="input-group">
- <label for="endDate">End Date</label>
- <input type="datetime-local" id="endDate" required>
- </div>
- <div class="input-group">
- <label for="place">Place</label>
- <input type="text" id="place" placeholder="Enter location" required>
- </div>
- <button type="submit" class="btn-submit" id="appointment-btn">Create Appointment</button>
- <p id="appointment-error"></p>
- <p id="appointment-success"></p>
- </div>
- </div>
- </body>
- </html>
|