22 lines
1.1 KiB
PHP
22 lines
1.1 KiB
PHP
|
|
<?php
|
||
|
|
defined('ABSPATH') || exit;
|
||
|
|
?>
|
||
|
|
<div id="eb-tab-redsys" class="payment-tab">
|
||
|
|
<div class="payment-tab-content">
|
||
|
|
<h3><?php esc_html_e('Pay with Credit Card', 'eb-redsys-gateway') ?></h3>
|
||
|
|
<p><?php esc_html_e('You will be redirected to Redsys secure payment page to complete your purchase.', 'eb-redsys-gateway') ?></p>
|
||
|
|
|
||
|
|
<?php if (get_option('eb_redsys_test_mode') === 'yes'): ?>
|
||
|
|
<div class="eb-alert eb-alert-warning">
|
||
|
|
<?php esc_html_e('Test mode is enabled. Use test card details for payments.', 'eb-redsys-gateway') ?>
|
||
|
|
</div>
|
||
|
|
<?php endif; ?>
|
||
|
|
|
||
|
|
<form id="eb-redsys-payment-form" method="post" action="<?php echo esc_url(eb_checkout_url()) ?>">
|
||
|
|
<input type="hidden" name="eb_arrive" value="1">
|
||
|
|
<input type="hidden" name="eagle_booking_payment_method" value="redsys">
|
||
|
|
<?php wp_nonce_field('eb_payment_nonce', 'eb_payment_nonce'); ?>
|
||
|
|
<button type="submit" class="btn"><?php esc_html_e('Proceed to Payment', 'eb-redsys-gateway') ?></button>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
</div>
|