This commit is contained in:
gsinghpal
2026-03-20 11:46:41 -04:00
parent 595dccc17d
commit 92369be6e0
71 changed files with 6588 additions and 8 deletions

View File

@@ -62,6 +62,45 @@
autocomplete="cc-name"/>
</div>
<!-- Card type selector (for terminal payments where card brand cannot be auto-detected) -->
<div class="mb-3 o_poynt_card_type_section" style="display:none;">
<label class="form-label">Card Type</label>
<div class="d-flex gap-2 flex-wrap">
<div class="form-check">
<input type="radio" class="form-check-input" name="poynt_card_type"
id="poynt_ct_visa" value="visa"/>
<label class="form-check-label" for="poynt_ct_visa">Visa</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" name="poynt_card_type"
id="poynt_ct_mc" value="mastercard"/>
<label class="form-check-label" for="poynt_ct_mc">Mastercard</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" name="poynt_card_type"
id="poynt_ct_amex" value="amex"/>
<label class="form-check-label" for="poynt_ct_amex">Amex</label>
</div>
<div class="form-check">
<input type="radio" class="form-check-input" name="poynt_card_type"
id="poynt_ct_other" value="other" checked="checked"/>
<label class="form-check-label" for="poynt_ct_other">Other</label>
</div>
</div>
</div>
<!-- Surcharge notice (shown when surcharge is enabled) -->
<div class="mb-3 o_poynt_surcharge_notice" style="display:none;">
<div class="alert alert-info py-2 mb-0">
<small>
<i class="fa fa-info-circle me-1"/>
<span>A credit card processing fee of </span>
<strong id="poynt_surcharge_rate">0.00</strong>
<span>% (<strong id="poynt_surcharge_amount">$0.00</strong>) will be added to your total.</span>
</small>
</div>
</div>
<!-- Terminal payment option -->
<div class="mb-3 o_poynt_terminal_section" style="display:none;">
<hr/>