This commit is contained in:
Andras Bacsai
2023-05-25 14:05:44 +02:00
parent ea2a13dff2
commit d2b0823cd0
40 changed files with 284 additions and 279 deletions

View File

@@ -1,11 +1,11 @@
<div>
<form class="flex flex-col gap-2 " wire:submit.prevent='createPrivateKey'>
<x-inputs.input id="name" label="Name" required />
<x-inputs.input id="description" label="Description" />
<x-inputs.textarea id="value" rows="10" placeholder="-----BEGIN OPENSSH PRIVATE KEY-----"
<x-forms.input id="name" label="Name" required />
<x-forms.input id="description" label="Description" />
<x-forms.textarea id="value" rows="10" placeholder="-----BEGIN OPENSSH PRIVATE KEY-----"
label="Private Key" required />
<x-inputs.button type="submit" wire.click.prevent>
<x-forms.button type="submit" wire.click.prevent>
Save
</x-inputs.button>
</x-forms.button>
</form>
</div>