Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Doctor Registration Form</title>
- <style>
- .container {
- display: flex;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div>
- <img src="C:\Users\Abu Talha\Desktop\doctor.png" alt="Doctor Image" width="700" height="600">
- </div>
- <div>
- <h2>Doctor Registration Form</h2>
- <form>
- <label for="appointmentDate">Appointment Date:</label>
- <input type="date" id="appointmentDate" name="appointmentDate"><br><br>
- <label for="appointmentTime">Appointment Time:</label>
- <input type="time" id="appointmentTime" name="appointmentTime"><br><br>
- <label for="firstName">Name:</label>
- <input type="text" id="firstName" name="firstName" placeholder="First">
- <input type="text" id="lastName" name="lastName" placeholder="Last"><br><br>
- <label>Gender:</label><br>
- <input type="radio" id="male" name="gender" value="male">
- <label for="male">Male</label><br>
- <input type="radio" id="female" name="gender" value="female">
- <label for="female">Female</label><br><br>
- <label for="phone">Phone:</label>
- <input type="tel" id="phone" name="phone"><br><br>
- <label for="city">City:</label>
- <input type="text" id="city" name="city"><br><br>
- <label for="state">State:</label>
- <input type="text" id="state" name="state"><br><br>
- <label for="query">Your Query:</label>
- <textarea id="query" name="query" rows="4"></textarea><br><br>
- <label for="appointmentType">Appointment Type:</label><br>
- <select id="appointmentType" name="appointmentType" required>
- <option value="cervixCheckup">Cervix checkup</option>
- <option value="heartCheckup">Heart checkup</option>
- <option value="eyeCheckup">Eye check-up</option>
- <option value="hearingTest">Hearing Test</option>
- </select><br><br>
- <input type="submit" value="Submit">
- <input type="reset" value="Reset">
- </form>
- </div>
- </div>
- </body>
- </html>
Add Comment
Please, Sign In to add comment