2020-10-19 23:02:18 +02:00
|
|
|
@extends('portal.ninja2020.layout.app')
|
|
|
|
|
|
|
|
@isset($gateway_title)
|
|
|
|
@section('meta_title', $gateway_title)
|
|
|
|
@else
|
|
|
|
@section('meta_title', ctrans('texts.pay_now'))
|
|
|
|
@endisset
|
|
|
|
|
|
|
|
@push('head')
|
|
|
|
@yield('gateway_head')
|
|
|
|
@endpush
|
|
|
|
|
|
|
|
@section('body')
|
2021-01-19 14:36:07 +01:00
|
|
|
@livewire('required-client-info', ['fields' => method_exists($gateway, 'getClientRequiredFields') ? $gateway->getClientRequiredFields() : [], 'contact' => auth('contact')->user(), 'countries' => $countries])
|
2021-01-12 15:43:07 +01:00
|
|
|
|
2021-01-14 12:24:45 +01:00
|
|
|
<div class="container mx-auto grid grid-cols-12 opacity-25 pointer-events-none" data-ref="gateway-container">
|
2020-10-19 23:02:18 +02:00
|
|
|
<div class="col-span-12 lg:col-span-6 lg:col-start-4 overflow-hidden bg-white shadow rounded-lg">
|
|
|
|
<div class="px-4 py-5 border-b border-gray-200 sm:px-6">
|
2020-10-19 23:49:17 +02:00
|
|
|
@isset($card_title)
|
|
|
|
<h3 class="text-lg font-medium leading-6 text-gray-900">
|
|
|
|
{{ $card_title }}
|
|
|
|
</h3>
|
|
|
|
@endisset
|
2021-01-12 15:43:07 +01:00
|
|
|
|
2020-10-19 23:49:17 +02:00
|
|
|
@isset($card_description)
|
|
|
|
<p class="max-w-2xl mt-1 text-sm leading-5 text-gray-500">
|
2020-10-19 23:02:18 +02:00
|
|
|
{{ $card_description }}
|
2020-10-19 23:49:17 +02:00
|
|
|
</p>
|
|
|
|
@endisset
|
2020-10-19 23:02:18 +02:00
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
@yield('gateway_content')
|
|
|
|
</div>
|
2021-03-02 15:53:13 +01:00
|
|
|
<span class="block mx-4 mb-4 text-xs inline-flex items-center">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="text-green-600"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>
|
|
|
|
<span class="ml-1">Secure 256-bit encryption</span>
|
|
|
|
</span>
|
2020-10-19 23:02:18 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@push('footer')
|
|
|
|
@yield('gateway_footer')
|
2021-01-12 15:43:07 +01:00
|
|
|
|
|
|
|
<script>
|
|
|
|
Livewire.on('passed-required-fields-check', () => {
|
2021-01-14 12:24:45 +01:00
|
|
|
document.querySelector('div[data-ref="required-fields-container"]').classList.add('opacity-25');
|
|
|
|
document.querySelector('div[data-ref="required-fields-container"]').classList.add('pointer-events-none');
|
|
|
|
|
|
|
|
document.querySelector('div[data-ref="gateway-container"]').classList.remove('opacity-25');
|
|
|
|
document.querySelector('div[data-ref="gateway-container"]').classList.remove('pointer-events-none');
|
|
|
|
|
|
|
|
document
|
|
|
|
.querySelector('div[data-ref="gateway-container"]')
|
2021-01-26 17:21:12 +01:00
|
|
|
.scrollIntoView({behavior: "smooth"});
|
2021-01-12 15:43:07 +01:00
|
|
|
});
|
|
|
|
</script>
|
2020-10-19 23:02:18 +02:00
|
|
|
@endpush
|