Files
coolify/resources/views/livewire/project/add-empty.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

19 lines
814 B
PHP

<form class="space-y-4" wire:submit="submit">
<div class="grid gap-4 md:grid-cols-2">
<x-forms.input placeholder="Your project name" id="name" label="Name" required />
<x-forms.input placeholder="A short project description" id="description" label="Description" />
</div>
<p
class="rounded-lg border border-neutral-200 bg-neutral-50 px-3 py-2.5 text-[12px] text-neutral-500 dark:border-white/[0.08] dark:bg-white/[0.025] dark:text-fg-dim">
A production environment will be created automatically.
</p>
<footer class="flex justify-end border-t border-neutral-200 pt-4 dark:border-white/[0.08]">
<x-forms.button type="submit"
defaultClass="button button-highlighted">
Create project
</x-forms.button>
</footer>
</form>