feat: 패스워드변경페이지 추가
This commit is contained in:
parent
56f0a13679
commit
fa371f3795
23
frontend/src/pages/PasswordChangePage/PasswordChangePage.jsx
Normal file
23
frontend/src/pages/PasswordChangePage/PasswordChangePage.jsx
Normal file
@ -0,0 +1,23 @@
|
||||
import MaxWidthLayout from '../../components/Layout/MaxWidthLayout';
|
||||
import { PasswordChangeForm } from '../../components/PasswordChangeForm';
|
||||
import SideBar from '../../components/SideBar/SideBar';
|
||||
import SideLink from '../../components/SideBar/SideLink';
|
||||
|
||||
export default function PasswordChangePage() {
|
||||
return (
|
||||
<>
|
||||
<MaxWidthLayout hasSideBar>
|
||||
<aside>
|
||||
<SideBar title="마이페이지">
|
||||
<SideLink to={'/'}>계정 정보 변경</SideLink>
|
||||
<SideLink to={'/'}>비밀번호 변경</SideLink>
|
||||
<SideLink to={'/'}>수강중인 강의</SideLink>
|
||||
</SideBar>
|
||||
</aside>
|
||||
<main>
|
||||
<PasswordChangeForm />
|
||||
</main>
|
||||
</MaxWidthLayout>
|
||||
</>
|
||||
);
|
||||
}
|
Loading…
Reference in New Issue
Block a user