mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 14:54:49 +00:00
* Build out user deactivation and purging workflows * Add i18n translations for user deletion * Add tests for user deletion * Fix lint issue
18 lines
827 B
Plaintext
18 lines
827 B
Plaintext
<dialog id="turbo-confirm" class="max-w-[420px] w-full rounded-xl">
|
|
<form method="dialog" class="p-4">
|
|
<div class="flex flex-col mb-4">
|
|
<div class="flex justify-between mb-2 gap-4">
|
|
<h3 id="turbo-confirm-title" class="font-medium text-md"><%= t(".title") %></h3>
|
|
<button value="cancel">
|
|
<%= lucide_icon("x", class: "w-5 h-5 shrink-0 text-gray-500") %>
|
|
</button>
|
|
</div>
|
|
<div id="turbo-confirm-body" class="text-gray-500 text-sm">
|
|
<%= t(".body_html") %>
|
|
</div>
|
|
</div>
|
|
<button id="turbo-confirm-accept" class="w-full text-red-600 rounded-xl text-center p-[10px] border mb-2" value="confirm"><%= t(".accept") %></button>
|
|
<button class="w-full rounded-xl text-center p-[10px] border" value="cancel"><%= t(".cancel") %></button>
|
|
</form>
|
|
</dialog>
|