<!DOCTYPE html> <html lang="th"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Create Tour</title> <link rel="stylesheet" href="/css/create.css"> </head> <body> <main> <h1>สร้างโปรแกรม Tour</h1> <br> <form action="/create" method="POST"> <div> <label for="tourName">ชื่อโปรแกรมทัวร์:</label> <input type="text" id="tourName" name="name" required> </div> <div> <label for="tourDescription">รายละเอียด:</label> <textarea id="tourDescription" name="description" required></textarea> </div> <div> <label for="tourPrice">ราคา:</label> <input type="text" id="tourPrice" name="price" required> </div> <div> <label for="tourDuration">ระยะเวลา (วัน):</label> <input type="text" id="tourDuration" name="duration" required> </div> <button type="submit">สร้างโปรแกรม Tour</button> </form> </main> </body> </html>