localhost-front/src/views/user/TheLogin.vue
2025-01-17 11:00:40 +09:00

20 lines
536 B
Vue

<template>
<div class="d-flex justify-content-center align-items-center vh-100">
<div class="container container-p-y rounded bg-white" style="max-width: 500px">
<LogoHeader title="LOCALNET" />
<LoginForm @submit="handleSubmit" />
</div>
</div>
</template>
<script setup>
import LoginForm from '@c/user/LoginForm.vue';
import LogoHeader from '@c/user/LogoHeader.vue';
const handleSubmit = async ({ id, password }) => {
console.log('Login');
};
</script>
<style></style>