feat: able to make rsa/ed ssh keys

This commit is contained in:
Andras Bacsai
2024-04-03 13:45:49 +02:00
parent 82f74e2264
commit 22a1d3882e
4 changed files with 41 additions and 14 deletions

View File

@@ -26,12 +26,12 @@
<h3 class="pb-4">Choose another Key</h3>
<div class="grid grid-cols-3 gap-2">
@forelse ($privateKeys as $private_key)
<div class="box group">
<div class="flex flex-col " wire:click='setPrivateKey({{ $private_key->id }})'>
<div class="box-title">{{ $private_key->name }}</div>
<div class="box-description">{{ $private_key->description }}</div>
<div class="box group" wire:click='setPrivateKey({{ $private_key->id }})'>
<div class="flex flex-col ">
<div class="box-title">{{ $private_key->name }}</div>
<div class="box-description">{{ $private_key->description }}</div>
</div>
</div>
</div>
@empty
<div>No private keys found. </div>
@endforelse