81 lines
1.8 KiB
Vue
81 lines
1.8 KiB
Vue
<template>
|
|
<UAuthForm
|
|
:fields="fields"
|
|
:schema="signInSchema"
|
|
:providers="providers"
|
|
title="Welcome back"
|
|
icon="i-lucide-lock"
|
|
@submit="onLoginSubmit"
|
|
>
|
|
<template #description>
|
|
Don't have an account? <ULink to="/signup" class="text-primary-500 font-medium">Sign up</ULink>.
|
|
</template>
|
|
|
|
<template #password-hint>
|
|
<ULink to="/" class="text-primary-500 font-medium">Forgot password?</ULink>
|
|
</template>
|
|
|
|
<template #footer>
|
|
By signing in, you agree to our <ULink to="/" class="text-primary-500 font-medium">Terms of Service</ULink>.
|
|
</template>
|
|
</UAuthForm>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { FormSubmitEvent } from '@nuxt/ui'
|
|
import { signInSchema, type SignInSchema } from '~/types/schemas'
|
|
|
|
definePageMeta({ layout: 'auth' })
|
|
|
|
useSeoMeta({ title: 'Login' })
|
|
|
|
const toast = useToast()
|
|
const { signIn } = useAuth()
|
|
|
|
const fields = [
|
|
{
|
|
name: 'email',
|
|
type: 'text' as const,
|
|
label: 'Email',
|
|
placeholder: 'Enter your email',
|
|
required: true
|
|
},
|
|
{
|
|
name: 'password',
|
|
label: 'Password',
|
|
type: 'password' as const,
|
|
placeholder: 'Enter your password'
|
|
},
|
|
{
|
|
name: 'remember',
|
|
label: 'Remember me',
|
|
type: 'checkbox' as const
|
|
}
|
|
]
|
|
|
|
const providers = [
|
|
{
|
|
label: 'Google',
|
|
icon: 'i-simple-icons-google',
|
|
onClick: () => {
|
|
toast.add({ title: 'Google', description: 'Login with Google' })
|
|
}
|
|
},
|
|
{
|
|
label: 'GitHub',
|
|
icon: 'i-simple-icons-github',
|
|
onClick: () => {
|
|
toast.add({ title: 'GitHub', description: 'Login with GitHub' })
|
|
}
|
|
}
|
|
]
|
|
|
|
function onLoginSubmit(payload: FormSubmitEvent<SignInSchema>) {
|
|
if (!payload.data.email || !payload.data.password) {
|
|
alert('Bitte alle Felder ausfüllen')
|
|
return
|
|
}
|
|
signIn(payload)
|
|
}
|
|
</script>
|