<!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="/styles.css"> </head> <body> <header> <h1>Create New Tour</h1> </header> <main> <form action="/create" method="POST"> <div> <label for="tourName">Tour Name:</label> <input type="text" id="tourName" name="name" required> </div> <div> <label for="tourDescription">Description:</label> <textarea id="tourDescription" name="description" required></textarea> </div> <div> <label for="tourPrice">Price:</label> <input type="text" id="tourPrice" name="price" required> </div> <div> <label for="tourDuration">Duration (days):</label> <input type="text" id="tourDuration" name="duration" required> </div> <button type="submit">Create Tour</button> </form> </main> <footer> <p>© 2025 Your Tour Website</p> </footer> </body> </html>