2023-05-18 11:26:35 +00:00
|
|
|
<div x-data="{ deleteApplication: false }">
|
2023-06-16 13:56:25 +00:00
|
|
|
<x-naked-modal show="deleteApplication" title="Delete Application"
|
|
|
|
message='This application will be deleted. It is not reversible. <br>Please think again.' />
|
2023-06-02 10:34:45 +00:00
|
|
|
<h2>Danger Zone</h2>
|
2023-06-16 10:35:40 +00:00
|
|
|
<div class="">Woah. I hope you know what are you doing.</div>
|
2023-06-02 10:34:45 +00:00
|
|
|
<h3 class="pt-4">Delete Application</h3>
|
2023-06-16 13:56:25 +00:00
|
|
|
<div class="pb-4">This will stop your containers, delete all related data, etc. Beware! There is no coming
|
2023-06-02 10:34:45 +00:00
|
|
|
back!
|
2023-05-31 08:19:29 +00:00
|
|
|
</div>
|
2023-06-16 13:56:25 +00:00
|
|
|
<x-forms.button isWarning x-on:click.prevent="deleteApplication = true">Delete</x-forms.button>
|
2023-05-18 11:26:35 +00:00
|
|
|
</div>
|