store/resources/js/pages/auth/Login.vue

15 lines
377 B
Vue

<script setup lang="ts">
import { Head } from '@inertiajs/vue3';
import LoginForm from '../../components/LoginForm.vue';
</script>
<template>
<Head title="Login" />
<div class="bg-muted flex min-h-svh flex-col items-center justify-center p-6 md:p-10">
<div class="w-full max-w-sm md:max-w-4xl">
<LoginForm />
</div>
</div>
</template>