24 lines
533 B
Vue
24 lines
533 B
Vue
<script setup lang="ts">
|
|
import AuthLoginForm from '~/components/auth/AuthLoginForm.vue'
|
|
|
|
definePageMeta({ middleware: ['guest'], layout: 'auth' })
|
|
</script>
|
|
|
|
<template>
|
|
<div class="mx-auto flex min-h-screen w-full items-center justify-center">
|
|
<UCard class="w-96">
|
|
<template #header>
|
|
<h1 class="text-center text-2xl font-bold">
|
|
Login
|
|
</h1>
|
|
</template>
|
|
|
|
<AuthLoginForm />
|
|
|
|
<!-- <UDivider label="OR" class=" my-4"/> -->
|
|
</UCard>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|