myMedisys/tomcatfiles/mymedisys-frontend/WEB-INF/classes/templates/page/payment/sample-payment-gt.html

36 lines
1.0 KiB
HTML
Raw Normal View History

2023-09-06 05:56:42 +05:30
<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">
<form th:action="@{${'/onlinepayment/sample'}}" th:object="${paymentDto}"
autocomplete="off" th:method="post"
enctype="multipart/form-data">
<div class="col-md-12 col-12 mr-auto ml-auto">
<div class="card">
<div class="card-header">
<h3 class="card-title">SAMPLE PAYMENT GATEWAY</h3>
</div>
<div class="card-body">
<div class="row">
<div class="form-group">
<label for="amount" class="required bmd-label-floating" th:text="#{'Amount'}" />
<input type="text" class="form-control" th:field="*{amount}" required="required" />
</div>
</div>
<div class="row">
<div class="col-12 mt-3">
<div class="pull-right">
<button type="submit"
class="btn btn-fill btn-primary btn-wd btn-focus">Submit</button>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</body>
</html>