coolify/resources/views/livewire/project/application/danger.blade.php

10 lines
475 B
PHP
Raw Normal View History

2023-05-18 13:26:35 +02:00
<div x-data="{ deleteApplication: false }">
2023-05-31 10:19:29 +02:00
<h2 class="pb-0">Danger Zone</h2>
<div class="text-sm">Woah. I hope you know what are you doing.</div>
<h3 class="pb-0">Delete Application</h3>
<div class="text-sm">This will stop your containers, delete all related data, etc. Beware! There is no coming back!
</div>
2023-05-18 13:26:35 +02:00
<x-naked-modal show="deleteApplication" />
2023-05-31 10:19:29 +02:00
<x-forms.button x-on:click.prevent="deleteApplication = true">Delete</x-forms.button>
2023-05-18 13:26:35 +02:00
</div>