Files
cultureat-bak/wp-content/themes/ccat/app/components/auth/AuthLoginForm.vue
Pascal Martineau a863da3e40
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m1s
feat: isRedirecting auth
2025-09-18 14:39:47 -04:00

16 lines
306 B
Vue

<script setup lang="ts">
const { loginFields, login } = useAuthActions();
</script>
<template>
<UAuthForm
:schema="loginSchema"
:fields="loginFields"
title="Connexion"
description="Veuillez vous identifier."
icon="i-lucide-user"
loading-auto
@submit="login"
/>
</template>