coolify/resources/views/livewire/server/show-private-key.blade.php

39 lines
1.4 KiB
PHP
Raw Normal View History

2023-06-15 14:18:49 +02:00
<div>
2023-06-16 13:13:09 +02:00
<div class="flex items-end gap-2 pb-6 ">
2023-06-22 09:38:44 +02:00
<h2>Private Key</h2>
2023-09-04 09:44:44 +02:00
<a href="{{ route('security.private-key.new') }}">
2023-06-15 14:18:49 +02:00
<x-forms.button>Add a new Private Key</x-forms.button>
</a>
2023-06-16 13:13:09 +02:00
<x-forms.button wire:click.prevent='checkConnection'>
Check connection
</x-forms.button>
2023-06-15 14:18:49 +02:00
</div>
2023-06-16 13:13:09 +02:00
<div class="flex flex-col gap-2 pb-6">
2023-06-15 14:18:49 +02:00
@if (data_get($server, 'privateKey.uuid'))
2023-06-16 13:13:09 +02:00
<div>
Currently attached Private Key:
2023-09-04 09:44:44 +02:00
<a href="{{ route('security.private-key.show', ['private_key_uuid' => data_get($server, 'privateKey.uuid')]) }}">
2023-06-16 13:13:09 +02:00
<button class="text-white btn-link">{{ data_get($server, 'privateKey.name') }}</button>
</a>
</div>
2023-06-15 14:18:49 +02:00
@else
2023-06-16 12:35:40 +02:00
<div class="">No private key attached.</div>
2023-06-15 14:18:49 +02:00
@endif
2023-06-16 13:13:09 +02:00
2023-06-15 14:18:49 +02:00
</div>
<h3 class="pb-4">Choose another Key</h3>
<div class="grid grid-cols-3 gap-2">
@forelse ($privateKeys as $private_key)
<x-forms.button class="flex flex-col box" wire:click='setPrivateKey({{ $private_key->id }})'>
<div>{{ $private_key->name }}</div>
<div class="text-xs">{{ $private_key->description }}</div>
</x-forms.button>
@empty
<div>No private keys found.
2023-09-05 11:53:34 +02:00
<x-use-magic-bar link="/security/private-key/new" />
</div>
@endforelse
</div>
2023-05-03 12:38:57 +02:00
</div>