SmartCane/laravel_app/resources/views/livewire/download/download-form.blade.php
Martin Folkerts 4c730c0167 wip
2023-10-24 17:08:04 +02:00

48 lines
1.4 KiB
PHP

<x-action-section>
<x-slot name="title">
{{ __('Satellite data') }}
</x-slot>
<x-slot name="description">
{{ __('Add additional satellite data to your account.') }}
</x-slot>
<x-slot name="content">
<h3 class="text-lg font-medium text-gray-900">
{{ __('Download satellite data') }}
</h3>
<div class="mt-3 max-w-xl text-sm text-gray-600">
<p>
{{ __('Vul een aantal dagen in en druk op start om de betreffende sateliet data te downloaden') }}
<x-input type="text" wire:model="days" class="mt-1 block w-full"/>
</p>
</div>
<div class="mt-4 max-w-xl text-sm text-gray-600">
<p class="font-semibold">
{{ __('') }}
</p>
</div>
@if ($this->output)
<div
class="grid gap-1 mt-4 px-4 py-4 font-mono overflow-hidden break-words text-sm bg-gray-100 rounded-lg"
wire:stream="output">{{ $output }}
</div>
@endif
<div class="mt-5">
<x-secondary-button class="mr-3"
wire:click="start"
wire:target="start"
wire:loading.attr="disabled"
>
{{ $buttonText }}
</x-secondary-button>
</div>
</x-slot>
</x-action-section>