Files
cultureat-bak/wp-content/themes/ccat/app/components/auth/LogoutForm.vue
Pascal Martineau 346890c088
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 6m3s
refactor: better project structure
2025-09-17 08:41:42 -04:00

25 lines
567 B
Vue

<script setup lang="ts">
const { onLogoutClick } = useAuth();
</script>
<template>
<div class="w-full space-y-6">
<div class="flex flex-col text-center">
<div class="text-xl text-pretty font-semibold text-highlighted">
Déconnexion
</div>
<div class="mt-1 text-base text-pretty text-muted">
Veuillez confirmer la déconnexion.
</div>
</div>
<UButton
icon="i-lucide-log-out"
block
loading-auto
to="/auth"
label="Déconnexion"
@click="onLogoutClick"
/>
</div>
</template>