localhost-front/src/views/user/TheLogin.vue
2025-01-21 13:33:58 +09:00

17 lines
421 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 />
</div>
</div>
</template>
<script setup>
import LoginForm from '@c/user/LoginForm.vue';
import LogoHeader from '@c/user/LogoHeader.vue';
</script>
<style></style>