8 lines
482 B
PHP
Raw Normal View History

<form class="flex flex-col w-full gap-2 rounded" wire:submit='submit'>
2024-07-25 13:55:33 -07:00
<x-forms.input autofocus placeholder="Your New Project" id="name" label="Name" required />
2024-03-20 12:54:06 +01:00
<x-forms.input placeholder="This is my cool project everyone knows about" id="description" label="Description" />
<div class="subtitle">New project will have a default production environment.</div>
<x-forms.button type="submit" @click="slideOverOpen=false">
2024-03-21 14:30:35 +01:00
Continue
2024-03-20 12:54:06 +01:00
</x-forms.button>
2024-07-25 13:55:33 -07:00
</form>