movie-night-web/app/pages/auth/login.vue

27 lines
394 B
Vue
Raw Normal View History

2026-02-24 00:20:54 -06:00
<script lang="ts" setup>
import LoginForm from "~/components/forms/auth/login-form.vue";
definePageMeta({
layout: 'auth'
})
2026-02-24 00:20:54 -06:00
</script>
<template>
<div class="content">
<h1>Log in</h1>
<login-form/>
</div>
2026-02-24 00:20:54 -06:00
</template>
<style scoped>
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
gap: 2rem;
}
2026-02-24 00:20:54 -06:00
</style>