KKSU
2025-02-08 d2e20554025955f4c8e831d1969ca060997aaf71
1
2
3
4
5
6
7
8
9
10
11
12
13
<!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>