2023-07-26 13:23:47 +02:00
|
|
|
<dialog id="newEmptyProject" class="modal">
|
2023-12-07 19:06:32 +01:00
|
|
|
<form method="dialog" class="flex flex-col gap-2 rounded modal-box" wire:submit='submit'>
|
2024-03-05 16:39:13 -08:00
|
|
|
<x-forms.input placeholder="Your New Project" id="name" label="Name" required />
|
|
|
|
<x-forms.input placeholder="This is my new project" id="description" label="Description" />
|
2023-07-26 13:23:47 +02:00
|
|
|
<x-forms.button onclick="newEmptyProject.close()" type="submit">
|
|
|
|
Save
|
|
|
|
</x-forms.button>
|
|
|
|
</form>
|
|
|
|
<form method="dialog" class="modal-backdrop">
|
|
|
|
<button>close</button>
|
|
|
|
</form>
|
2024-03-05 16:39:13 -08:00
|
|
|
</dialog>
|