Files
coolify/resources/views/livewire/security/cloud-init-script-form.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

12 lines
643 B
PHP

<form wire:submit="save" class="application-settings-form flex w-full flex-col gap-4">
<x-forms.input id="name" label="Script name" helper="A recognizable name for this reusable script." required />
<x-forms.textarea id="script" label="Script content" rows="12" monospace
helper="Cloud-config YAML or another script accepted by your provider." required />
<div class="flex justify-end border-t border-neutral-200 pt-4 dark:border-white/[0.08]">
<button type="submit"
class="button button-highlighted">
{{ $scriptId ? 'Update script' : 'Create script' }}
</button>
</div>
</form>