mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 12:23:48 +00:00
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.
23 lines
1.0 KiB
PHP
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>
|