fork download
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>จองห้องประชุม</title>
  5. </head>
  6. <body>
  7. <h1>จองห้องประชุม</h1>
  8. <form>
  9. <label for="name">ชื่อ-นามสกุล:</label>
  10. <input type="text" id="name" name="name" required><br><br>
  11.  
  12. <label for="date">วันที่:</label>
  13. <input type="date" id="date" name="date" required><br><br>
  14.  
  15. <label for="start_time">เวลาเริ่ม:</label>
  16. <input type="time" id="start_time" name="start_time" required><br><br>
  17.  
  18. <label for="end_time">เวลาสิ้นสุด:</label>
  19. <input type="time" id="end_time" name="end_time" required><br><br>
  20.  
  21. <label for="topic">หัวข้อการประชุม:</label>
  22. <input type="text" id="topic" name="topic" required><br><br>
  23.  
  24. <label for="room_type">ประเภทห้อง:</label>
  25. <select id="room_type" name="room_type">
  26. <option value="small">ขนาดเล็ก</option>
  27. <option value="medium">ขนาดกลาง</option>
  28. <option value="large">ขนาดใหญ่</option>
  29. </select><br><br>
  30.  
  31. <input type="submit" value="จองห้อง">
  32. </form>
  33. </body>
  34. </html>}
Success #stdin #stdout 0.03s 25852KB
stdin
Standard input is empty
stdout
<!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>}