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

11 lines
492 B
PHP
Raw Normal View History

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