Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
  • b1da3496828ff9fa2967813b83baabad93534c7b
  • main default protected
2 results

tour-details.ejs

Blame
  • tour-details.ejs 655 B
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <title><%= tour.name %> - Tour Details</title>
      <link rel="stylesheet" href="/css/styles.css">
    </head>
    <body>
      <header>
        <h1>Tour Details: <%= tour.name %></h1>
      </header>
      
      <section>
        <h2>Description</h2>
        <p><%= tour.description %></p>
        <p>Price: <%= tour.price %> THB</p>
        <p>ระยะเวลา: <%= tour.duration %> วัน</p>
        <a href="/" class="btn-edit">ย้อนกลับ</a>   
      </section>
    
      <footer>
        <p>&copy; 2025 Tour Website</p>
      </footer>
    </body>
    </html>