| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!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>
- <link rel="stylesheet" href="../stylesheets/schedule.css">
- </head>
- <body>
- <div class="container">
- <h1>Attending an appointment</h1>
- <form id="schedule-form">
- <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" value="2024-12-20" readonly>
- </div>
- <!-- Preset Appointment Date -->
- <div class="input-group">
- <label for="appointment-date">Appointment Date</label>
- <input type="text" id="appointment-date" name="appointmentDate" value="2024-12-25" 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" class="btn-submit">Attend</button>
- </form>
- </div>
- </body>
- </html>
|