2026-02-24 00:20:54 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
|
import LoginForm from "~/components/forms/auth/login-form.vue";
|
2026-02-25 17:33:37 -06:00
|
|
|
|
|
|
|
|
definePageMeta({
|
|
|
|
|
layout: 'auth'
|
|
|
|
|
})
|
2026-02-24 00:20:54 -06:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2026-04-05 00:36:20 -05:00
|
|
|
<div class="content">
|
|
|
|
|
<h1>Log in</h1>
|
|
|
|
|
<login-form/>
|
|
|
|
|
</div>
|
2026-02-24 00:20:54 -06:00
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2026-04-05 00:36:20 -05:00
|
|
|
.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>
|