<!DOCTYPE html>
|
<html xmlns:th="http://www.thymeleaf.org">
|
<head>
|
<title>Payment Success</title>
|
</head>
|
<body>
|
<h1>Payment Successful</h1>
|
<p>Order ID: <span th:text="${orderId}"></span></p>
|
<p>Transaction ID: <span th:text="${tranId}"></span></p>
|
<p>Amount: <span th:text="${amount}"></span> <span th:text="${currency}"></span></p>
|
<p>Payment Date: <span th:text="${payDate}"></span></p>
|
</body>
|
</html>
|