21 lines
826 B
HTML
21 lines
826 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:th="http://www.thymeleaf.org"
|
|
layout:decorate="~{layouts/blank-layout}">
|
|
<body layout:fragment="page_content" id="page_projections">
|
|
<h4 class="card-title mt-5 mb-3">
|
|
<strong> Please Do Not Close the browser and do not refresh page. </strong>
|
|
</h4>
|
|
<form th:action="@{${'/onlinepayment'}}" id="onlinPayFormSubmit"
|
|
autocomplete="off" th:method="post"
|
|
th:object="${payForm}" enctype="multipart/form-data">
|
|
<input type="hidden" th:field="*{name}"/>
|
|
<input type="hidden" th:field="*{sellerOrderNo}"/>
|
|
<input type="hidden" th:field="*{buyerEmail}"/>
|
|
<input type="hidden" th:field="*{paymentDesc}"/>
|
|
<input type="hidden" th:field="*{returnUrl}"/>
|
|
<input type="hidden" th:field="*{txnAmount}"/>
|
|
<input type="hidden" th:field="*{paymentDate}"/>
|
|
|
|
</form>
|
|
</body>
|
|
</html> |