2023-05-03 12:38:57 +02:00
|
|
|
<div>
|
2023-06-07 16:47:10 +02:00
|
|
|
<form class="flex flex-col gap-2" wire:submit.prevent='createPrivateKey'>
|
|
|
|
<div class="flex gap-2">
|
|
|
|
<x-forms.input id="name" label="Name" required />
|
|
|
|
<x-forms.input id="description" label="Description" />
|
|
|
|
</div>
|
2023-05-25 14:05:44 +02:00
|
|
|
<x-forms.textarea id="value" rows="10" placeholder="-----BEGIN OPENSSH PRIVATE KEY-----"
|
2023-05-22 12:00:59 +02:00
|
|
|
label="Private Key" required />
|
2023-06-08 11:43:14 +02:00
|
|
|
<x-forms.button type="submit">
|
2023-06-07 16:47:10 +02:00
|
|
|
Save Private Key
|
2023-05-25 14:05:44 +02:00
|
|
|
</x-forms.button>
|
2023-05-03 12:38:57 +02:00
|
|
|
</form>
|
|
|
|
</div>
|