This commit is contained in:
2022-02-20 17:58:29 -05:00
parent 3c31423bb1
commit 18c2b8668c
2 changed files with 29 additions and 12 deletions
@@ -28,8 +28,11 @@
<span class="required">Name On Card</span>
<i class="fas fa-exclamation-circle ms-2 fs-7" data-bs-toggle="tooltip" title="Specify a card holder's name"></i>
</label>
<!--end::Label-->
<input type="text" class="form-control form-control-solid" placeholder="" name="card_name" value="Max Doe" />
<input type="text" class="form-control form-control-solid" placeholder="" name="card_name" value="<?=$_SESSION['firstname']?> <?=$_SESSION['lastname']?>" />
</div>
<!--end::Input group-->
<!--begin::Input group-->
@@ -136,17 +139,31 @@
</div>
<!--end::Input group-->
<!--begin::Input group-->
<div class="d-flex flex-column mb-7 fv-row">
<!--begin::Label-->
<label class="d-flex align-items-center fs-6 fw-bold form-label mb-2">
<span class="required">Billing Address</span>
<i class="fas fa-exclamation-circle ms-2 fs-7" data-bs-toggle="tooltip" title="Same as on the profile"></i>
</label>
<!--end::Label-->
<input type="text" class="form-control form-control-solid" placeholder="" readonly name="billing_address" value="424 Def Far, Powder Spr, GA 20127, USA " />
</div>
<!--end::Input group-->
<!--begin::Input group-->
<div class="d-flex flex-stack">
<!--begin::Label-->
<div class="me-5">
<label class="fs-6 fw-bold form-label">Save Card for further billing?</label>
<div class="fs-7 fw-bold text-muted">If you need more info, please check budget planning</div>
<label class="fs-6 fw-bold form-label">Save Card for further purchases?</label>
</div>
<!--end::Label-->
<!--begin::Switch-->
<label class="form-check form-switch form-check-custom form-check-solid">
<input class="form-check-input" type="checkbox" value="1" checked="checked" />
<input class="form-check-input" type="checkbox" value="1" />
<span class="form-check-label fw-bold text-muted">Save Card</span>
</label>
<!--end::Switch-->