2020-11-17 16:56:44 +01:00
|
|
|
<div style="display: none;" id="displayTermsModal" class="fixed bottom-0 inset-x-0 px-4 pb-4 sm:inset-0 sm:flex sm:items-center sm:justify-center">
|
|
|
|
<div x-show="open" x-transition:enter="ease-out duration-300" x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-100" x-transition:leave="ease-in duration-200" x-transition:leave-start="opacity-100" x-transition:leave-end="opacity-0" class="fixed inset-0 transition-opacity">
|
2020-03-23 18:10:42 +01:00
|
|
|
<div class="absolute inset-0 bg-gray-500 opacity-75"></div>
|
|
|
|
</div>
|
|
|
|
|
2020-11-17 16:56:44 +01:00
|
|
|
<div x-show="open" x-transition:enter="ease-out duration-300" x-transition:enter-start="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95" x-transition:enter-end="opacity-100 translate-y-0 sm:scale-100" x-transition:leave="ease-in duration-200" x-transition:leave-start="opacity-100 translate-y-0 sm:scale-100" x-transition:leave-end="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95" class="bg-white rounded-lg px-4 pt-5 pb-4 overflow-hidden shadow-xl transform transition-all sm:max-w-lg sm:w-full sm:p-6">
|
2020-03-23 18:10:42 +01:00
|
|
|
<div class="sm:flex sm:items-start">
|
|
|
|
<div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left">
|
2020-11-17 16:56:44 +01:00
|
|
|
<h3 class="text-xl leading-6 font-medium text-gray-900">
|
2020-03-23 18:10:42 +01:00
|
|
|
{{ ctrans('texts.terms') }}
|
|
|
|
</h3>
|
2020-11-17 16:56:44 +01:00
|
|
|
<div class="mt-4">
|
|
|
|
@foreach($entities as $entity)
|
|
|
|
<div class="mb-4">
|
2021-03-02 13:42:25 +01:00
|
|
|
<p class="text-sm leading-6 font-medium text-gray-500">{{ $entity_type }} {{ $entity->number }}:</p>
|
2020-11-17 16:56:44 +01:00
|
|
|
@if($entity->terms)
|
2021-03-02 13:42:25 +01:00
|
|
|
<h5 data-ref="entity-terms" class="text-sm leading-5 text-gray-900">{!! $entity->terms !!}</h5>
|
2020-11-17 16:56:44 +01:00
|
|
|
@else
|
|
|
|
<i class="text-sm leading-5 text-gray-500">{{ ctrans('texts.not_specified') }}</i>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
|
2021-03-02 15:32:20 +01:00
|
|
|
<p class="mt-4 block text-sm text-gray-900">{{ ctrans('texts.click_agree_to_accept_terms') }}</p>
|
2020-03-23 18:10:42 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="mt-5 sm:mt-4 sm:flex sm:flex-row-reverse">
|
|
|
|
<div class="flex w-full rounded-md shadow-sm sm:ml-3 sm:w-auto">
|
2020-09-30 13:31:15 +02:00
|
|
|
<button type="button" id="accept-terms-button" class="button button-primary bg-primary">
|
2021-03-02 15:32:20 +01:00
|
|
|
{{ ctrans('texts.agree') }}
|
2020-03-23 18:10:42 +01:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="mt-3 flex w-full rounded-md shadow-sm sm:mt-0 sm:w-auto">
|
2020-11-17 16:56:44 +01:00
|
|
|
<button @click="document.getElementById('displayTermsModal').style.display = 'none';" type="button" class="button button-secondary">
|
2020-03-23 18:10:42 +01:00
|
|
|
{{ ctrans('texts.close') }}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-03-02 13:42:25 +01:00
|
|
|
|
|
|
|
@push('footer')
|
|
|
|
<script src="{{ asset('js/clients/linkify-urls.js') }}" defer></script>
|
|
|
|
@endpush
|