localhost-front/src/views/user/ThePassword.vue
2025-02-06 09:24:13 +09:00

17 lines
444 B
Vue

<template>
<div class="d-flex justify-content-center align-items-center">
<div class="container rounded bg-white my-10 py-10" style="max-width: 500px">
<LogoHeader title="비밀번호 재설정"/>
<FindPassword />
</div>
</div>
</template>
<script setup>
import FindPassword from '@/components/user/FindPassword.vue';
import LogoHeader from '@c/user/LogoHeader.vue';
</script>
<style></style>