-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from 4bujak-4bujak/feature/sign2
Feature/sign2
- Loading branch information
Showing
53 changed files
with
3,858 additions
and
112 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import React from 'react'; | ||
import MainContainer from '../shared/MainContainer'; | ||
import { useRouter } from 'next/router'; | ||
|
||
const ChangePasswordDone = () => { | ||
const router = useRouter(); | ||
return ( | ||
<MainContainer> | ||
<div className="mt-[210px] flex flex-col items-center justify-center"> | ||
<div className="relative"> | ||
<div className="w-[95.84px] h-[95.84px] bg-violet-100 rounded-full"> | ||
<img src="/sign/doneCircle.png" alt="" className="w-full" /> | ||
</div> | ||
<div | ||
className="w-[82px] h-[100px] z-10 absolute" | ||
style={{ left: 18, top: -25 }}> | ||
<img src="/sign/doneCheck.png" alt="" className=" w-full" /> | ||
</div> | ||
</div> | ||
<div className="mt-[32px]"> | ||
<div className="text-center text-black text-[22px] font-semibold font-pretendard leading-[30.80px]"> | ||
비밀번호 재설정이 <br /> | ||
완료되었습니다. | ||
</div> | ||
</div> | ||
</div> | ||
<div className="flex justify-center items-center mb-2"> | ||
<button | ||
className=" border text-space-purple border-space-purple mt-[100px] w-[361px] h-12 px-3.5 rounded-lg justify-center items-center inline-flex text-[15px] font-medium font-pretendard leading-snug " | ||
type="submit" | ||
onClick={() => router.replace('/signin')}> | ||
로그인하러 가기 | ||
</button> | ||
</div> | ||
</MainContainer> | ||
); | ||
}; | ||
|
||
export default ChangePasswordDone; |
Oops, something went wrong.