65 lines
1.7 KiB
Vue
65 lines
1.7 KiB
Vue
<template>
|
|
<div class="mx-auto w-full max-w-lg">
|
|
<span
|
|
class="flex items-center justify-center bg-white text-xl font-bold uppercase text-primary-500 p-4"
|
|
>
|
|
<img src="/malio.png" alt="Logo" class="w-[150px]"/>
|
|
</span>
|
|
<form
|
|
class="mt-8 space-y-6 rounded-lg border border-neutral-200 bg-white p-6 shadow-sm"
|
|
@submit.prevent="handleSubmit"
|
|
>
|
|
<MalioInputText
|
|
label="Nom d'utilisateur"
|
|
autocomplete="username"
|
|
group-class="mt-0"
|
|
inputClass="w-full"
|
|
v-model="username"
|
|
/>
|
|
|
|
<MalioInputPassword
|
|
v-model="password"
|
|
label="Mot de passe"
|
|
autocomplete="current-password"
|
|
input-class="w-full"
|
|
/>
|
|
|
|
<MalioButton
|
|
label="Se connecter"
|
|
button-class="w-full"
|
|
type="submit"
|
|
:disabled="isSubmitting"
|
|
/>
|
|
<p class="font-bold">v{{ version }}</p>
|
|
</form>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
definePageMeta({layout: 'auth'})
|
|
useHead({
|
|
title: 'Connexion'
|
|
})
|
|
|
|
const auth = useAuthStore()
|
|
const {version} = useAppVersion()
|
|
|
|
const username = ref('')
|
|
const password = ref('')
|
|
const isSubmitting = ref(false)
|
|
|
|
async function handleSubmit() {
|
|
if (isSubmitting.value) return
|
|
|
|
isSubmitting.value = true
|
|
try {
|
|
await auth.login(username.value, password.value)
|
|
|
|
const isClient = auth.user?.roles?.includes('ROLE_CLIENT') ?? false
|
|
await navigateTo(isClient ? '/portal' : '/')
|
|
} finally {
|
|
isSubmitting.value = false
|
|
}
|
|
}
|
|
</script>
|