coolify/resources/views/livewire/run-command.blade.php

21 lines
960 B
PHP
Raw Normal View History

2023-03-20 13:04:22 +01:00
<div>
2023-05-25 14:21:49 +02:00
<h1 class="pb-0">Command Center</h1>
<div class="pb-4 text-sm">Outputs are not saved at the moment, only available until you refresh or navigate.</div>
2023-05-08 09:16:50 +02:00
<form class="flex items-end justify-center gap-2" wire:submit.prevent='runCommand'>
2023-05-25 14:05:44 +02:00
<x-forms.input placeholder="ls -l" autofocus noDirty id="command" label="Command" required />
<x-forms.select label="Server" id="server" required>
2023-05-04 10:00:08 +02:00
@foreach ($servers as $server)
2023-05-12 15:39:07 +02:00
@if ($loop->first)
<option selected value="{{ $server->uuid }}">{{ $server->name }}</option>
@else
<option value="{{ $server->uuid }}">{{ $server->name }}</option>
@endif
2023-05-04 10:00:08 +02:00
@endforeach
2023-05-25 14:05:44 +02:00
</x-forms.select>
<x-forms.button class="btn-xl" type="submit">Run</x-forms.button>
2023-05-04 10:00:08 +02:00
</form>
2023-05-08 09:16:50 +02:00
<div class="container w-full pt-10 mx-auto">
<livewire:activity-monitor />
</div>
2023-03-20 13:04:22 +01:00
</div>