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.
12 lines
643 B
PHP
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>
|