mirror of
https://git.imnavajas.es/jjimenez/erp-imprimelibros.git
synced 2026-03-02 06:39:13 +00:00
a falta del pago
This commit is contained in:
@ -1,3 +1,36 @@
|
||||
<div>
|
||||
|
||||
<h5 class="mb-3" th:text="#{checkout.payment}">Método de pago</h5>
|
||||
<div class="row g-4">
|
||||
<div class="col-lg-4 col-sm-6">
|
||||
<div class="form-check card-radio">
|
||||
<input id="paymentMethod01" name="paymentMethod" type="radio" class="form-check-input" checked>
|
||||
<label class="form-check-label" for="paymentMethod01">
|
||||
<span class="fs-16 text-muted me-2"><i class="mdi mdi-credit-card-outline align-bottom"></i></span>
|
||||
<span class="fs-14 text-wrap" th:text="#{checkout.payment.card}"></span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-lg-4 col-sm-6">
|
||||
<div class="form-check card-radio">
|
||||
<input id="paymentMethod02" name="paymentMethod" type="radio" class="form-check-input">
|
||||
<label class="form-check-label" for="paymentMethod02">
|
||||
<span class="fs-16 text-muted me-2"><i class="mdi mdi-wallet-outline align-bottom"></i></span>
|
||||
<span class="fs-14 text-wrap" th:text="#{checkout.payment.bizum}"></span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-lg-4 col-sm-6">
|
||||
<div class="form-check card-radio">
|
||||
<input id="paymentMethod03" name="paymentMethod" type="radio" class="form-check-input">
|
||||
<label class="form-check-label" for="paymentMethod03">
|
||||
<span class="fs-16 text-muted me-2"><i class="mdi mdi-bank-transfer align-bottom"></i></span>
|
||||
<span class="fs-14 text-wrap" th:text="#{checkout.payment.bank-transfer}"></span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user