9 lines
457 B
HTML
9 lines
457 B
HTML
|
|
<div x-data="{ show: true }" x-show="show" x-cloak x-init="setTimeout(() => show = false, 3000)"
|
||
|
|
class="fixed inset-0 bg-black/30 z-50 flex items-center justify-center">
|
||
|
|
<div class="bg-white rounded-xl shadow-xl p-8 text-center max-w-sm mx-4">
|
||
|
|
<p class="text-3xl mb-2">✅</p>
|
||
|
|
<p class="font-medium text-slate-900">Danke für dein Feedback!</p>
|
||
|
|
<button @click="show = false" class="btn-secondary mt-4">Schließen</button>
|
||
|
|
</div>
|
||
|
|
</div>
|