<!DOCTYPE html> <html> <head> <title>จองห้องประชุม</title> </head> <body> <h1>จองห้องประชุม</h1> <form> <label for="name">ชื่อ-นามสกุล:</label> <input type="text" id="name" name="name" required><br><br> <label for="date">วันที่:</label> <input type="date" id="date" name="date" required><br><br> <label for="start_time">เวลาเริ่ม:</label> <input type="time" id="start_time" name="start_time" required><br><br> <label for="end_time">เวลาสิ้นสุด:</label> <input type="time" id="end_time" name="end_time" required><br><br> <label for="topic">หัวข้อการประชุม:</label> <input type="text" id="topic" name="topic" required><br><br> <label for="room_type">ประเภทห้อง:</label> <select id="room_type" name="room_type"> <option value="small">ขนาดเล็ก</option> <option value="medium">ขนาดกลาง</option> <option value="large">ขนาดใหญ่</option> </select><br><br> <input type="submit" value="จองห้อง"> </form> </body> </html>}
Standard input is empty
<!DOCTYPE html> <html> <head> <title>จองห้องประชุม</title> </head> <body> <h1>จองห้องประชุม</h1> <form> <label for="name">ชื่อ-นามสกุล:</label> <input type="text" id="name" name="name" required><br><br> <label for="date">วันที่:</label> <input type="date" id="date" name="date" required><br><br> <label for="start_time">เวลาเริ่ม:</label> <input type="time" id="start_time" name="start_time" required><br><br> <label for="end_time">เวลาสิ้นสุด:</label> <input type="time" id="end_time" name="end_time" required><br><br> <label for="topic">หัวข้อการประชุม:</label> <input type="text" id="topic" name="topic" required><br><br> <label for="room_type">ประเภทห้อง:</label> <select id="room_type" name="room_type"> <option value="small">ขนาดเล็ก</option> <option value="medium">ขนาดกลาง</option> <option value="large">ขนาดใหญ่</option> </select><br><br> <input type="submit" value="จองห้อง"> </form> </body> </html>}