coolify/resources/views/livewire/project/add-environment.blade.php

12 lines
450 B
PHP
Raw Normal View History

<dialog id="newEnvironment" 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'>
2023-08-11 20:19:42 +02:00
<x-forms.input placeholder="production" id="name" label="Name" required />
<x-forms.button onclick="newEnvironment.close()" type="submit">
Save
</x-forms.button>
</form>
<form method="dialog" class="modal-backdrop">
<button>close</button>
</form>
</dialog>