login view 추가
This commit is contained in:
parent
c9e5679bbd
commit
7787f77a29
15
src/views/user/TheLogin.vue
Normal file
15
src/views/user/TheLogin.vue
Normal file
@ -0,0 +1,15 @@
|
||||
<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 :logo-url="logoUrl" title="LOCALNET" />
|
||||
<LoginForm @submit="handleSubmit" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import LogoHeader from '@c/login/LogoHeader.vue';
|
||||
import LoginForm from '@c/login/LoginForm.vue';
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
Loading…
Reference in New Issue
Block a user