fix boarding

This commit is contained in:
Andras Bacsai
2023-08-29 20:34:01 +02:00
parent 4a4837d9f5
commit 5eb41e1a15
2 changed files with 20 additions and 2 deletions

View File

@@ -41,6 +41,14 @@
</div>
<div class="justify-center box" wire:click="setPrivateKey('create')">No (create one for me)
</div>
<form wire:submit.prevent='selectExistingPrivateKey'>
<x-forms.select wire:model.defer='selectedExistingPrivateKey'>
@foreach ($privateKeys as $privateKey)
<option value="{{ $privateKey->id }}">{{ $privateKey->name }}</option>
@endforeach
</x-forms.select>
<x-forms.button type="submit">Select this</x-forms.button>
</form>
</x-slot:actions>
<x-slot:explanation>
<p>SSH Keys are used to connect to a remote server through a secure shell, called SSH.</p>