Files
coolify/resources/views/livewire/security/private-key/create.blade.php
Andras Bacsai bdb367555d feat(ui): unify brand accents and polish shared controls
Standardize highlighted buttons, selected controls, and loading
indicators on coollabs accent colors; improve light-mode log toolbar
styling; enhance small popups with compact/icon modes; and align
navbars, helpers, and related layouts with matching tests.
2026-08-05 22:34:56 +02:00

23 lines
1.0 KiB
PHP

<div class="application-settings-form">
<form class="flex flex-col gap-4" wire:submit="createPrivateKey">
<div class="grid gap-4 lg:grid-cols-2">
<x-forms.input id="name" label="Name" required />
<x-forms.input id="description" label="Description" />
<div class="lg:col-span-2">
<x-forms.textarea realtimeValidation id="value" rows="10" monospace
placeholder="-----BEGIN OPENSSH PRIVATE KEY-----" label="Private key" required />
</div>
<div class="lg:col-span-2">
<x-forms.input id="publicKey" readonly label="Public key"
helper="Copy this value to ~/.ssh/authorized_keys on the target server." />
</div>
</div>
<div class="flex justify-end border-t border-neutral-200 pt-4 dark:border-white/[0.08]">
<button type="submit"
class="button button-highlighted">
Continue
</button>
</div>
</form>
</div>