- <!DOCTYPE html>
- <html lang="en" xmlns:th="http://www.thymeleaf.org">
- <head>
- <meta charset="UTF-8">
- <title>Booking Confirmed</title>
- </head>
- <body>
- <h1>Booking Confirmed</h1>
- <p>Seat : <span th:text="${booking.seat}">seat</span></p>
- <p>Performance : <span th:text="${booking.performance.title}">performance</span></p>
- <p>Customer : <span th:text="${booking.customerName}">customer</span></p>
- <a href="/">Book another</a>
- </body>
- </html>
|