coolify/resources/views/livewire/project/application/danger.blade.php
Andras Bacsai 7bcbfc13b0 updates
2023-06-19 09:44:39 +02:00

12 lines
595 B
PHP

<div x-data="{ deleteApplication: false }">
<x-naked-modal show="deleteApplication" title="Delete Application"
message='This application will be deleted. It is not reversible. <br>Please think again.' />
<h3>Danger Zone</h3>
<div class="">Woah. I hope you know what are you doing.</div>
<h4 class="pt-4">Delete Application</h4>
<div class="pb-4">This will stop your containers, delete all related data, etc. Beware! There is no coming
back!
</div>
<x-forms.button isWarning x-on:click.prevent="deleteApplication = true">Delete</x-forms.button>
</div>